ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
20 lines (19 loc) • 485 B
TypeScript
export interface BuyerAddress<TBuyerAddressXp = any> {
readonly ID?: string;
Shipping?: boolean;
Billing?: boolean;
readonly Editable?: boolean;
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?: TBuyerAddressXp;
}