ValueList.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe\Radar;
  4. /**
  5. * Value lists allow you to group values together which can then be referenced in
  6. * rules.
  7. *
  8. * Related guide: <a
  9. * href="https://stripe.com/docs/radar/lists#managing-list-items">Default Stripe
  10. * Lists</a>.
  11. *
  12. * @property string $id Unique identifier for the object.
  13. * @property string $object String representing the object's type. Objects of the same type share the same value.
  14. * @property string $alias The name of the value list for use in rules.
  15. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  16. * @property string $created_by The name or email address of the user who created this value list.
  17. * @property string $item_type The type of items in the value list. One of <code>card_fingerprint</code>, <code>card_bin</code>, <code>email</code>, <code>ip_address</code>, <code>country</code>, <code>string</code>, or <code>case_sensitive_string</code>.
  18. * @property \Stripe\Collection $list_items List of items contained within this value list.
  19. * @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.
  20. * @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
  21. * @property string $name The name of the value list.
  22. */
  23. class ValueList extends \Stripe\ApiResource
  24. {
  25. const OBJECT_NAME = 'radar.value_list';
  26. use \Stripe\ApiOperations\All;
  27. use \Stripe\ApiOperations\Create;
  28. use \Stripe\ApiOperations\Delete;
  29. use \Stripe\ApiOperations\Retrieve;
  30. use \Stripe\ApiOperations\Update;
  31. }