/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * 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 CreateCustomerAddressRequest */ export interface CreateCustomerAddressRequest { /** * * @type {string} * @memberof CreateCustomerAddressRequest */ addresseeName?: string | null; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ company?: string | null; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ line1: string; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ line2?: string | null; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ suburb: string; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ state: string; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ postcode: string; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ country?: string | null; /** * * @type {string} * @memberof CreateCustomerAddressRequest */ type?: CreateCustomerAddressRequestTypeEnum; } /** * @export */ export declare const CreateCustomerAddressRequestTypeEnum: { readonly Shipping: "shipping"; readonly Billing: "billing"; readonly ShippingBilling: "shipping-billing"; readonly Others: "others"; }; export type CreateCustomerAddressRequestTypeEnum = typeof CreateCustomerAddressRequestTypeEnum[keyof typeof CreateCustomerAddressRequestTypeEnum]; /** * Check if a given object implements the CreateCustomerAddressRequest interface. */ export declare function instanceOfCreateCustomerAddressRequest(value: object): value is CreateCustomerAddressRequest; export declare function CreateCustomerAddressRequestFromJSON(json: any): CreateCustomerAddressRequest; export declare function CreateCustomerAddressRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCustomerAddressRequest; export declare function CreateCustomerAddressRequestToJSON(json: any): CreateCustomerAddressRequest; export declare function CreateCustomerAddressRequestToJSONTyped(value?: CreateCustomerAddressRequest | null, ignoreDiscriminator?: boolean): any;