/** * 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 CreateCartRequestShippingAddress */ export interface CreateCartRequestShippingAddress { /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ addresseeName?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ company?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ line1?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ line2?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ suburb?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ state?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ postcode?: string | null; /** * * @type {string} * @memberof CreateCartRequestShippingAddress */ country?: string | null; } /** * Check if a given object implements the CreateCartRequestShippingAddress interface. */ export declare function instanceOfCreateCartRequestShippingAddress(value: object): value is CreateCartRequestShippingAddress; export declare function CreateCartRequestShippingAddressFromJSON(json: any): CreateCartRequestShippingAddress; export declare function CreateCartRequestShippingAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCartRequestShippingAddress; export declare function CreateCartRequestShippingAddressToJSON(json: any): CreateCartRequestShippingAddress; export declare function CreateCartRequestShippingAddressToJSONTyped(value?: CreateCartRequestShippingAddress | null, ignoreDiscriminator?: boolean): any;