-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
494 additions
and
4 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
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 |
---|---|---|
@@ -1,12 +1,51 @@ | ||
export type Address = { | ||
/** | ||
* Cardholder first name | ||
*/ | ||
first_name: string; | ||
|
||
/** | ||
* Cardholder last name | ||
*/ | ||
last_name: string; | ||
|
||
/** | ||
* First line of a street address | ||
*/ | ||
address1?: string; | ||
|
||
/** | ||
* Second line of a street address | ||
*/ | ||
address2?: string; | ||
|
||
/** | ||
* Town or locality | ||
*/ | ||
city?: string; | ||
|
||
/** | ||
* Province or region | ||
*/ | ||
state?: string; | ||
|
||
/** | ||
* Postal code | ||
*/ | ||
postal_code?: string; | ||
|
||
/** | ||
* {@link http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2| [ISO 3166-1 alpha-2]} country code | ||
*/ | ||
country?: string; | ||
|
||
/** | ||
* Phone number | ||
*/ | ||
phone?: string; | ||
|
||
/** | ||
* Customer VAT number. Used for VAT exclusion | ||
*/ | ||
vat_number?: string; | ||
}; |
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
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
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
Oops, something went wrong.