ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
17 lines (16 loc) • 373 B
TypeScript
export interface Address<TAddressXp = any> {
ID?: string;
readonly DateCreated?: string;
CompanyName?: string;
FirstName?: string;
LastName?: string;
Street1: string;
Street2?: string;
City: string;
State: string;
Zip: string;
Country: string;
Phone?: string;
AddressName?: string;
xp?: TAddressXp;
}