Skip to content

Commit

Permalink
Merge pull request #1308 from stripe/latest-codegen
Browse files Browse the repository at this point in the history
API Updates
  • Loading branch information
yejia-stripe authored Dec 9, 2021
2 parents 1ec8be4 + 1d55d57 commit 865e656
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions types/2020-08-27/BillingPortal/Configurations.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ declare module 'stripe' {
*/
livemode: boolean;

/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
*/
metadata: Stripe.Metadata | null;

/**
* Time at which the object was last updated. Measured in seconds since the Unix epoch.
*/
Expand Down Expand Up @@ -251,6 +256,11 @@ declare module 'stripe' {
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;

/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
*/
metadata?: Stripe.MetadataParam;
}

namespace ConfigurationCreateParams {
Expand Down Expand Up @@ -482,6 +492,11 @@ declare module 'stripe' {
* Information about the features available in the portal.
*/
features?: ConfigurationUpdateParams.Features;

/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
*/
metadata?: Stripe.Emptyable<Stripe.MetadataParam>;
}

namespace ConfigurationUpdateParams {
Expand Down

0 comments on commit 865e656

Please sign in to comment.