Parameters for Owner Input Address in the PaymentMethods API.
Build this struct with new!/1 and pass it to the corresponding function on
Inttegro.PaymentMethods. Required keys are enforced immediately; optional values left as
nil are omitted from the request sent to Inttegro.
Saves and manages customer-owned payment methods.
A payment method always belongs to its attached customer. Tokenization may start a verification flow; inspect the returned verification state before attempting a charge. The API returns masked or provider-safe details and never returns raw reusable credentials.
Summary
Functions
Builds a Inttegro.PaymentMethods.OwnerInputAddress and raises KeyError when a required field is missing.
Types
@type t() :: %Inttegro.PaymentMethods.OwnerInputAddress{ city: String.t() | nil, country: String.t(), line1: String.t() | nil, line2: String.t() | nil, name: String.t() | nil, phone_number: String.t() | nil, post_code: String.t() | nil, region: String.t() | nil }
A validated owner input address request.
Functions
Builds a Inttegro.PaymentMethods.OwnerInputAddress and raises KeyError when a required field is missing.