# invoice\_setting\_customer\_setting

From **Stripe API**.

- Type: `object`

## Properties

### `custom_fields`

- Required: false
- Type: `array`
- Nullable: true

Default custom fields to be displayed on invoices for this customer.

### `default_payment_method`

- Required: false
- Nullable: true

ID of a payment method that's attached to the customer, to be used as the customer's default payment method for subscriptions and invoices.

### `footer`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Default footer to be displayed on invoices for this customer.

## JSON Schema

```json
{"properties":{"custom_fields":{"description":"Default custom fields to be displayed on invoices for this customer.","items":{"$ref":"#/components/schemas/invoice_setting_custom_field"},"nullable":true,"type":"array"},"default_payment_method":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/payment_method"}],"description":"ID of a payment method that's attached to the customer, to be used as the customer's default payment method for subscriptions and invoices.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/payment_method"}]}},"footer":{"description":"Default footer to be displayed on invoices for this customer.","maxLength":5000,"nullable":true,"type":"string"}},"title":"InvoiceSettingCustomerSetting","type":"object","x-expandableFields":["custom_fields","default_payment_method"]}
```
