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

description: A Configurations object represents how features should be configured for terminal readers.

:bbpos_wisepos_e :: ExOAPI.Stripe.Schemas.TerminalConfigurationConfigurationResourceDeviceTypeSpecificConfig

:id :: :string

Unique identifier for the object.

:is_account_default :: :boolean

Whether this Configuration is the default for your account

:livemode :: :boolean

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

:object :: :string

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

:tipping :: ExOAPI.Stripe.Schemas.TerminalConfigurationConfigurationResourceTipping

:verifone_P400 :: ExOAPI.Stripe.Schemas.TerminalConfigurationConfigurationResourceDeviceTypeSpecificConfig

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.Terminal_configuration{
  bbpos_wisepos_e:
    ExOAPI.Stripe.Schemas.TerminalConfigurationConfigurationResourceDeviceTypeSpecificConfig.t()
    | nil,
  id: String.t() | nil,
  is_account_default: boolean() | nil,
  livemode: boolean() | nil,
  object: :"terminal.configuration" | nil,
  tipping:
    ExOAPI.Stripe.Schemas.TerminalConfigurationConfigurationResourceTipping.t()
    | nil,
  verifone_P400:
    ExOAPI.Stripe.Schemas.TerminalConfigurationConfigurationResourceDeviceTypeSpecificConfig.t()
    | nil
}

Link to this section Functions

Link to this function

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

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