forked from Wavyzz/dolibarr
26 lines
504 B
PHP
26 lines
504 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class ApplePayDomain
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class ApplePayDomain extends ApiResource
|
|
{
|
|
use ApiOperations\All;
|
|
use ApiOperations\Create;
|
|
use ApiOperations\Delete;
|
|
use ApiOperations\Retrieve;
|
|
|
|
/**
|
|
* @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';
|
|
}
|
|
}
|