PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
sf-booking
/
payment-gateway
/
MangoPay
/
Libraries
<?php namespace MangoPay\Libraries; /** * Abstract class for all documents */ abstract class Document extends EntityBase { /** * Refused reason type * @var string */ public $RefusedReasonType; /** * Refused reason message * @var string */ public $RefusedReasonMessage; /** * Date when this document was processed * @var int Unix timestamp */ public $ProcessedDate; /** * Get array with read-only properties * @return array */ public function GetReadOnlyProperties() { $properties = parent::GetReadOnlyProperties(); array_push($properties, 'RefusedReasonType'); array_push($properties, 'RefusedReasonMessage'); array_push($properties, 'UserId'); return $properties; } }
[+]
..
[-] 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]