PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
sf-booking
/
payment-gateway
/
MangoPay
/
Libraries
<?php namespace MangoPay\Libraries; /** * Abstract class for all DTOs (entities and their composites) */ abstract class Dto { /** * Get array with mapping which property is object and what type of object. * To be overridden in child class if has any sub objects. * @return array */ public function GetSubObjects() { return array(); } /** * Get array with mapping which property depends on other property * To be overridden in child class if has any dependent objects. * @return array */ public function GetDependsObjects() { return array(); } /** * Get array with read only properties - not used in response * To be overridden in child class if has any read-only properties. * @return array */ public function GetReadOnlyProperties() { return array(); } }
[+]
..
[-] Error.php
[edit]
[-] ApiOAuth.php
[edit]
[-] ResponseException.php
[edit]
[-] AuthorizationTokenManager.php
[edit]
[-] UrlTool.php
[edit]
[-] HttpResponse.php
[edit]
[-] HttpCurl.php
[edit]
[-] Exception.php
[edit]
[-] Logs.php
[edit]
[-] IStorageStrategy.php
[edit]
[-] OAuthToken.php
[edit]
[-] Dto.php
[edit]
[-] Upload.php
[edit]
[-] HttpBase.php
[edit]
[-] RequestType.php
[edit]
[-] ApiBase.php
[edit]
[-] Configuration.php
[edit]
[-] EntityBase.php
[edit]
[-] RestTool.php
[edit]
[-] AuthenticationHelper.php
[edit]
[-] DefaultStorageStrategy.php
[edit]
[-] Document.php
[edit]