/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface BillingAddress */ export interface BillingAddress { /** * Client city * @type {string} * @memberof BillingAddress */ city?: string; /** * Client country using ISO 3166-1 alpha-3 * @type {string} * @memberof BillingAddress */ country?: string; /** * Client number and street * @type {string} * @memberof BillingAddress */ addressAdditional1?: string; /** * Client number and street * @type {string} * @memberof BillingAddress */ addressAdditional2?: string; /** * Client number and street * @type {string} * @memberof BillingAddress */ addressAdditional3?: string; /** * Client Post Code/ZIP * @type {string} * @memberof BillingAddress */ zipCode?: string; /** * Client State * @type {string} * @memberof BillingAddress */ state?: string; } /** * Check if a given object implements the BillingAddress interface. */ export declare function instanceOfBillingAddress(value: object): boolean; export declare function BillingAddressFromJSON(json: any): BillingAddress; export declare function BillingAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingAddress; export declare function BillingAddressToJSON(value?: BillingAddress | null): any;