Skip to content

Commit

Permalink
Re-add the Addresses type as it's not codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Mar 3, 2020
1 parent 0d510e3 commit 32375c9
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions types/2020-03-02/Addresses.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
declare namespace Stripe {
/**
* The Address object.
*/
interface Address {
/**
* City/District/Suburb/Town/Village.
*/
city: string | null;

/**
* 2-letter country code.
*/
country: string | null;

/**
* Address line 1 (Street address/PO Box/Company name).
*/
line1: string | null;

/**
* Address line 2 (Apartment/Suite/Unit/Building).
*/
line2: string | null;

/**
* ZIP or postal code.
*/
postal_code: string | null;

/**
* State/County/Province/Region.
*/
state: string | null;
}
}

0 comments on commit 32375c9

Please sign in to comment.