diff --git a/types/2020-03-02/Accounts.d.ts b/types/2020-03-02/Accounts.d.ts index 286aa056b1..81d2e0b5e5 100644 --- a/types/2020-03-02/Accounts.d.ts +++ b/types/2020-03-02/Accounts.d.ts @@ -1082,6 +1082,11 @@ declare module 'stripe' { */ phone?: string; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: Individual.PoliticalExposure; + /** * The last four digits of the individual's Social Security Number (U.S. only). */ @@ -1143,6 +1148,8 @@ declare module 'stripe' { year: number; } + type PoliticalExposure = 'existing' | 'none'; + interface Verification { /** * A document showing address, either a passport, local ID card, or utility bill from a well-known utility company. @@ -1752,6 +1759,11 @@ declare module 'stripe' { */ phone?: string; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: Individual.PoliticalExposure; + /** * The last four digits of the individual's Social Security Number (U.S. only). */ @@ -1813,6 +1825,8 @@ declare module 'stripe' { year: number; } + type PoliticalExposure = 'existing' | 'none'; + interface Verification { /** * A document showing address, either a passport, local ID card, or utility bill from a well-known utility company. diff --git a/types/2020-03-02/Persons.d.ts b/types/2020-03-02/Persons.d.ts index 25905258b6..c527a84be6 100644 --- a/types/2020-03-02/Persons.d.ts +++ b/types/2020-03-02/Persons.d.ts @@ -100,6 +100,11 @@ declare module 'stripe' { */ phone?: string | null; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: Person.PoliticalExposure; + relationship?: Person.Relationship; /** @@ -207,6 +212,8 @@ declare module 'stripe' { year: number | null; } + type PoliticalExposure = 'existing' | 'none'; + interface Relationship { /** * Whether the person is a director of the account's legal entity. Currently only required for accounts in the EU. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations. @@ -509,6 +516,11 @@ declare module 'stripe' { */ phone?: string; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: string; + /** * The relationship that this person has with the account's legal entity. */ @@ -744,6 +756,11 @@ declare module 'stripe' { */ phone?: string; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: string; + /** * The relationship that this person has with the account's legal entity. */ diff --git a/types/2020-03-02/Tokens.d.ts b/types/2020-03-02/Tokens.d.ts index 54d244e6d8..1ebb40666e 100644 --- a/types/2020-03-02/Tokens.d.ts +++ b/types/2020-03-02/Tokens.d.ts @@ -354,6 +354,11 @@ declare module 'stripe' { */ phone?: string; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: Individual.PoliticalExposure; + /** * The last four digits of the individual's Social Security Number (U.S. only). */ @@ -415,6 +420,8 @@ declare module 'stripe' { year: number; } + type PoliticalExposure = 'existing' | 'none'; + interface Verification { /** * A document showing address, either a passport, local ID card, or utility bill from a well-known utility company. @@ -598,6 +605,11 @@ declare module 'stripe' { */ phone?: string; + /** + * Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction. + */ + political_exposure?: string; + /** * The relationship that this person has with the account's legal entity. */