Skip to content

Commit

Permalink
Merge pull request #1026 from stripe/remi/codegen-418898b
Browse files Browse the repository at this point in the history
Add support for `tos_acceptance[service_agreement]` on `Account`
  • Loading branch information
remi-stripe authored Oct 2, 2020
2 parents c85a597 + ded9b23 commit aad8ccf
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -727,17 +727,22 @@ declare module 'stripe' {

interface TosAcceptance {
/**
* The Unix timestamp marking when the Stripe Services Agreement was accepted by the account representative
* The Unix timestamp marking when the account representative accepted their service agreement
*/
date?: number | null;

/**
* The IP address from which the Stripe Services Agreement was accepted by the account representative
* The IP address from which the account representative accepted their service agreement
*/
ip?: string | null;

/**
* The user agent of the browser from which the Stripe Services Agreement was accepted by the account representative
* The user's service agreement type
*/
service_agreement?: string;

/**
* The user agent of the browser from which the account representative accepted their service agreement
*/
user_agent?: string | null;
}
Expand Down Expand Up @@ -1641,17 +1646,22 @@ declare module 'stripe' {

interface TosAcceptance {
/**
* The Unix timestamp marking when the account representative accepted the Stripe Services Agreement.
* The Unix timestamp marking when the account representative accepted their service agreement.
*/
date?: number;

/**
* The IP address from which the account representative accepted the Stripe Services Agreement.
* The IP address from which the account representative accepted their service agreement.
*/
ip?: string;

/**
* The user agent of the browser from which the account representative accepted the Stripe Services Agreement.
* The user's service agreement type.
*/
service_agreement?: string;

/**
* The user agent of the browser from which the account representative accepted their service agreement.
*/
user_agent?: string;
}
Expand Down Expand Up @@ -2539,17 +2549,22 @@ declare module 'stripe' {

interface TosAcceptance {
/**
* The Unix timestamp marking when the account representative accepted the Stripe Services Agreement.
* The Unix timestamp marking when the account representative accepted their service agreement.
*/
date?: number;

/**
* The IP address from which the account representative accepted the Stripe Services Agreement.
* The IP address from which the account representative accepted their service agreement.
*/
ip?: string;

/**
* The user agent of the browser from which the account representative accepted the Stripe Services Agreement.
* The user's service agreement type.
*/
service_agreement?: string;

/**
* The user agent of the browser from which the account representative accepted their service agreement.
*/
user_agent?: string;
}
Expand Down

0 comments on commit aad8ccf

Please sign in to comment.