ApplePayDomain.php 1016 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * @property string $id Unique identifier for the object.
  6. * @property string $object String representing the object's type. Objects of the same type share the same value.
  7. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  8. * @property string $domain_name
  9. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
  10. */
  11. class ApplePayDomain extends ApiResource
  12. {
  13. const OBJECT_NAME = 'apple_pay_domain';
  14. use ApiOperations\All;
  15. use ApiOperations\Create;
  16. use ApiOperations\Delete;
  17. use ApiOperations\Retrieve;
  18. /**
  19. * @return string The class URL for this resource. It needs to be special
  20. * cased because it doesn't fit into the standard resource pattern.
  21. */
  22. public static function classUrl()
  23. {
  24. return '/v1/apple_pay/domains';
  25. }
  26. }