# `Stripe.Params.PaymentLinkCreateParams.ConsentCollection`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/payment_link_create_params.ex#L181)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.PaymentLinkCreateParams.ConsentCollection{
  payment_method_reuse_agreement:
    Stripe.Params.PaymentLinkCreateParams.ConsentCollection.PaymentMethodReuseAgreement.t()
    | nil,
  promotions: String.t() | nil,
  terms_of_service: String.t() | nil
}
```

* `payment_method_reuse_agreement` - Determines the display of payment method reuse agreement text in the UI. If set to `hidden`, it will hide legal text related to the reuse of a payment method.
* `promotions` - If set to `auto`, enables the collection of customer consent for promotional communications. The Checkout
Session will determine whether to display an option to opt into promotional communication
from the merchant depending on the customer's locale. Only available to US merchants. Possible values: `auto`, `none`.
* `terms_of_service` - If set to `required`, it requires customers to check a terms of service checkbox before being able to pay.
There must be a valid terms of service URL set in your [Dashboard settings](https://dashboard.stripe.com/settings/public). Possible values: `none`, `required`.

---

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