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

:city :: :string

The city where the payment originated.

:country :: :string

Two-letter ISO code representing the country where the payment originated.

:latitude :: :number

The geographic latitude where the payment originated.

:longitude :: :number

The geographic longitude where the payment originated.

:region :: :string

The state/county/province/region where the payment originated.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.RadarReviewResourceLocation{
  city: String.t() | nil,
  country: String.t() | nil,
  latitude: float() | nil,
  longitude: float() | nil,
  region: String.t() | nil
}

Link to this section Functions

Link to this function

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

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