You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @description An array of fully qualified domain names (FQDNs) for which the certificate was issued. A certificate covering all subdomains can be issued using a wildcard (e.g. `*.example.com`).
* @description When `true`, the Droplet's disk will be resized in addition to its RAM and CPU. This is a permanent change and cannot be reversed as a Droplet's disk size cannot be decreased.
* @description The image ID of a public or private image or the slug identifier for a public image. The Droplet will be rebuilt using this image as its base.
/** @description [The merchant category code for the account](https://stripe.com/docs/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide. */
/** @description The customer-facing business name. */
2111
2112
name?: string | null;
2112
2113
/** @description Internal-only description of the product sold or service provided by the business. It's used by Stripe for risk and underwriting purposes. */
/** @description A non-negative integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal). */
2440
+
amount: number;
2441
+
/** @description Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). */
2442
+
currency: string;
2443
+
};
2436
2444
/** AccountPaymentsSettings */
2437
2445
account_payments_settings: {
2438
2446
/** @description The default text that appears on credit card statements when a charge is made. This field prefixes any dynamic `statement_descriptor` specified on the charge. */
0 commit comments