mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
67 lines
1.5 KiB
PHP
67 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class ApplePayDomain
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class ApplePayDomain extends ApiResource
|
|
{
|
|
|
|
/**
|
|
* @return string The class URL for this resource. It needs to be special
|
|
* cased because it doesn't fit into the standard resource pattern.
|
|
*/
|
|
public static function classUrl()
|
|
{
|
|
return '/v1/apple_pay/domains';
|
|
}
|
|
|
|
/**
|
|
* @param array|string $id The ID of the domain to retrieve, or an options
|
|
* array containing an `id` key.
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return ApplePayDomain
|
|
*/
|
|
public static function retrieve($id, $opts = null)
|
|
{
|
|
return self::_retrieve($id, $opts);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return ApplePayDomain The created domain.
|
|
*/
|
|
public static function create($params = null, $opts = null)
|
|
{
|
|
return self::_create($params, $opts);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return ApplePayDomain The deleted domain.
|
|
*/
|
|
public function delete($params = null, $opts = null)
|
|
{
|
|
return $this->_delete($params, $opts);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return Collection of ApplePayDomains
|
|
*/
|
|
public static function all($params = null, $opts = null)
|
|
{
|
|
return self::_all($params, $opts);
|
|
}
|
|
}
|