31 lines
1.5 KiB
PHP
31 lines
1.5 KiB
PHP
<?php
|
|
|
|
// File generated from our OpenAPI spec
|
|
namespace WP_Ultimo\Dependencies\Stripe\Service\Treasury;
|
|
|
|
/**
|
|
* Service factory class for API resources in the Treasury namespace.
|
|
*
|
|
* @property CreditReversalService $creditReversals
|
|
* @property DebitReversalService $debitReversals
|
|
* @property FinancialAccountService $financialAccounts
|
|
* @property InboundTransferService $inboundTransfers
|
|
* @property OutboundPaymentService $outboundPayments
|
|
* @property OutboundTransferService $outboundTransfers
|
|
* @property ReceivedCreditService $receivedCredits
|
|
* @property ReceivedDebitService $receivedDebits
|
|
* @property TransactionEntryService $transactionEntries
|
|
* @property TransactionService $transactions
|
|
*/
|
|
class TreasuryServiceFactory extends \WP_Ultimo\Dependencies\Stripe\Service\AbstractServiceFactory
|
|
{
|
|
/**
|
|
* @var array<string, string>
|
|
*/
|
|
private static $classMap = ['creditReversals' => CreditReversalService::class, 'debitReversals' => DebitReversalService::class, 'financialAccounts' => FinancialAccountService::class, 'inboundTransfers' => InboundTransferService::class, 'outboundPayments' => OutboundPaymentService::class, 'outboundTransfers' => OutboundTransferService::class, 'receivedCredits' => ReceivedCreditService::class, 'receivedDebits' => ReceivedDebitService::class, 'transactionEntries' => TransactionEntryService::class, 'transactions' => TransactionService::class];
|
|
protected function getServiceClass($name)
|
|
{
|
|
return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
|
}
|
|
}
|