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

description: A Location represents a grouping of readers.

Related guide: Fleet Management.

:address :: ExOAPI.Stripe.Schemas.Address

:configuration_overrides :: :string

The ID of a configuration that will be used to customize all readers in this location.

:display_name :: :string

The display name of the location.

:id :: :string

Unique identifier for the object.

: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.

: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.Terminal_location{
  address: ExOAPI.Stripe.Schemas.Address.t() | nil,
  configuration_overrides: String.t() | nil,
  display_name: String.t() | nil,
  id: String.t() | nil,
  livemode: boolean() | nil,
  metadata: map() | nil,
  object: :"terminal.location" | nil
}

Link to this section Functions

Link to this function

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

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