PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
sf-booking
/
payment-gateway
/
MangoPay
/
Libraries
<?php namespace MangoPay\Libraries; /** * Abstract class with common properties */ abstract class EntityBase extends Dto { /** * @var string Unique identifier * * At this moment, identifier is a numeric string - in the future, will be GUID. */ public $Id; /** * @var string Custom data */ public $Tag; /** * @var int Unix timestamp, Date of creation */ public $CreationDate; /** * Construct * @param string $id Entity identifier */ public function __construct($id = null) { $this->Id = $id; } /** * Get array with read-only properties * @return array */ public function GetReadOnlyProperties() { return array( 'Id', 'CreationDate' ); } }
[+]
..
[-] 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]