-
Notifications
You must be signed in to change notification settings - Fork 764
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-add the Addresses type as it's not codegen
- Loading branch information
1 parent
0d510e3
commit 32375c9
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |