@apideck/node
Version:
Apideck Node.js SDK
64 lines (63 loc) • 1.8 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* An object representing a shipping or billing address.
* @export
* @interface EcommerceAddress
*/
export interface EcommerceAddress {
/**
* Address line 1 of the billing address.
* @type {string}
* @memberof EcommerceAddress
*/
line1?: string | null;
/**
* Address line 2 of the billing address.
* @type {string}
* @memberof EcommerceAddress
*/
line2?: string | null;
/**
* Company name of the customer
* @type {string}
* @memberof EcommerceAddress
*/
company_name?: string | null;
/**
* City of the billing address.
* @type {string}
* @memberof EcommerceAddress
*/
city?: string | null;
/**
* State/province of the billing address.
* @type {string}
* @memberof EcommerceAddress
*/
state?: string | null;
/**
* Postal/ZIP code of the billing address.
* @type {string}
* @memberof EcommerceAddress
*/
postal_code?: string | null;
/**
* Country of the billing address.
* @type {string}
* @memberof EcommerceAddress
*/
country?: string | null;
}
export declare function EcommerceAddressFromJSON(json: any): EcommerceAddress;
export declare function EcommerceAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): EcommerceAddress;
export declare function EcommerceAddressToJSON(value?: EcommerceAddress | null): any;