Parameters for onboarding link create.
Summary
Types
@type link_options() :: %{ optional(:apple_terms_and_conditions) => link_options_apple_terms_and_conditions() | nil, optional(String.t()) => term() }
apple_terms_and_conditions- The options associated with the Apple Terms and Conditions link type.
@type link_options_apple_terms_and_conditions() :: %{ optional(:allow_relinking) => boolean() | nil, optional(:merchant_display_name) => String.t() | nil, optional(String.t()) => term() }
allow_relinking- Whether the link should also support users relinking their Apple account.merchant_display_name- The business name of the merchant accepting Apple's Terms and Conditions. Max length: 5000.
@type t() :: %Stripe.Params.Terminal.OnboardingLinkCreateParams{ expand: [String.t()] | nil, link_options: link_options(), link_type: String.t(), on_behalf_of: String.t() | nil }
expand- Specifies which fields in the response should be expanded.link_options- Specific fields needed to generate the desired link type.link_type- The type of link being generated. Possible values:apple_terms_and_conditions.on_behalf_of- Stripe account ID to generate the link for. Max length: 5000.