# `Stripe.Params.Terminal.OnboardingLinkCreateParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/terminal/onboarding_link_create_params.ex#L2)

Parameters for onboarding link create.

# `t`

```elixir
@type t() :: %Stripe.Params.Terminal.OnboardingLinkCreateParams{
  expand: [String.t()] | nil,
  link_options:
    Stripe.Params.Terminal.OnboardingLinkCreateParams.LinkOptions.t(),
  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.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
