/** * 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 */ export declare const ShippingType: { readonly Pickup: "pickup"; readonly Delivery: "delivery"; readonly AuspostStandard: "auspost_standard"; readonly Express: "express"; readonly Courier: "courier"; readonly DontShip: "dont_ship"; }; export type ShippingType = typeof ShippingType[keyof typeof ShippingType]; export declare function instanceOfShippingType(value: any): boolean; export declare function ShippingTypeFromJSON(json: any): ShippingType; export declare function ShippingTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShippingType; export declare function ShippingTypeToJSON(value?: ShippingType | null): any; export declare function ShippingTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): ShippingType;