/** * 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 ProductSortBy: { readonly Relevance: "relevance"; readonly MostPopular: "mostPopular"; readonly HighestRating: "highestRating"; readonly LowestRating: "lowestRating"; readonly DescendingPrice: "descendingPrice"; readonly AscendingPrice: "ascendingPrice"; readonly DescendingName: "descendingName"; readonly AscendingName: "ascendingName"; readonly RecentlyAdded: "recentlyAdded"; }; export type ProductSortBy = typeof ProductSortBy[keyof typeof ProductSortBy]; export declare function instanceOfProductSortBy(value: any): boolean; export declare function ProductSortByFromJSON(json: any): ProductSortBy; export declare function ProductSortByFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductSortBy; export declare function ProductSortByToJSON(value?: ProductSortBy | null): any; export declare function ProductSortByToJSONTyped(value: any, ignoreDiscriminator: boolean): ProductSortBy;