ApplePayDomain.php 550 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class ApplePayDomain
  5. *
  6. * @package Stripe
  7. */
  8. class ApplePayDomain extends ApiResource
  9. {
  10. const OBJECT_NAME = "apple_pay_domain";
  11. use ApiOperations\All;
  12. use ApiOperations\Create;
  13. use ApiOperations\Delete;
  14. use ApiOperations\Retrieve;
  15. /**
  16. * @return string The class URL for this resource. It needs to be special
  17. * cased because it doesn't fit into the standard resource pattern.
  18. */
  19. public static function classUrl()
  20. {
  21. return '/v1/apple_pay/domains';
  22. }
  23. }