/** * 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 SearchAllProductTypesRequest */ export interface SearchAllProductTypesRequest { /** * * @type {string} * @memberof SearchAllProductTypesRequest */ search?: string | null; /** * * @type {string} * @memberof SearchAllProductTypesRequest */ sortBy?: SearchAllProductTypesRequestSortByEnum; /** * * @type {string} * @memberof SearchAllProductTypesRequest */ sortDirection?: SearchAllProductTypesRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchAllProductTypesRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchAllProductTypesRequest */ relatedType?: SearchAllProductTypesRequestRelatedTypeEnum; /** * * @type {boolean} * @memberof SearchAllProductTypesRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchAllProductTypesRequestSortByEnum: { readonly Id: "id"; readonly Name: "name"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchAllProductTypesRequestSortByEnum = typeof SearchAllProductTypesRequestSortByEnum[keyof typeof SearchAllProductTypesRequestSortByEnum]; /** * @export */ export declare const SearchAllProductTypesRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchAllProductTypesRequestSortDirectionEnum = typeof SearchAllProductTypesRequestSortDirectionEnum[keyof typeof SearchAllProductTypesRequestSortDirectionEnum]; /** * @export */ export declare const SearchAllProductTypesRequestRelatedTypeEnum: { readonly Attribute: "attribute"; readonly Product: "product"; }; export type SearchAllProductTypesRequestRelatedTypeEnum = typeof SearchAllProductTypesRequestRelatedTypeEnum[keyof typeof SearchAllProductTypesRequestRelatedTypeEnum]; /** * Check if a given object implements the SearchAllProductTypesRequest interface. */ export declare function instanceOfSearchAllProductTypesRequest(value: object): value is SearchAllProductTypesRequest; export declare function SearchAllProductTypesRequestFromJSON(json: any): SearchAllProductTypesRequest; export declare function SearchAllProductTypesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchAllProductTypesRequest; export declare function SearchAllProductTypesRequestToJSON(json: any): SearchAllProductTypesRequest; export declare function SearchAllProductTypesRequestToJSONTyped(value?: SearchAllProductTypesRequest | null, ignoreDiscriminator?: boolean): any;