View Source ExOAPI.Stripe.Schemas.Radar_valueList (exoapi_stripe v0.1.4)

description: Value lists allow you to group values together which can then be referenced in rules.

Related guide: Default Stripe Lists.

:alias :: :string

The name of the value list for use in rules.

:created :: :integer

Time at which the object was created. Measured in seconds since the Unix epoch.

:created_by :: :string

The name or email address of the user who created this value list.

:id :: :string

Unique identifier for the object.

:item_type :: :string

The type of items in the value list. One of card_fingerprint, card_bin, email, ip_address, country, string, case_sensitive_string, or customer_id.

::data :: ExOAPI.Stripe.Schemas.Radar_valueListItem

:has_more :: :boolean

True if this list has another page of items after this one that can be fetched.

:object :: :string

String representing the object's type. Objects of the same type share the same value. Always has the value list.

:url :: :string

The URL where this list can be accessed.

:livemode :: :boolean

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

:metadata :: :map

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

:name :: :string

The name of the value list.

:object :: :string

String representing the object's type. Objects of the same type share the same value.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.Radar_valueList{
  alias: String.t() | nil,
  created: integer() | nil,
  created_by: String.t() | nil,
  id: String.t() | nil,
  item_type:
    (:string
     | :ip_address
     | :email
     | :customer_id
     | :country
     | :case_sensitive_string
     | :card_fingerprint
     | :card_bin)
    | nil,
  list_items: map() | nil,
  livemode: boolean() | nil,
  metadata: map() | nil,
  name: String.t() | nil,
  object: :"radar.value_list" | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()