/** * 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 SearchAllAttributesRequest */ export interface SearchAllAttributesRequest { /** * * @type {string} * @memberof SearchAllAttributesRequest */ search?: string | null; /** * * @type {string} * @memberof SearchAllAttributesRequest */ sortBy?: SearchAllAttributesRequestSortByEnum; /** * * @type {string} * @memberof SearchAllAttributesRequest */ sortDirection?: SearchAllAttributesRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchAllAttributesRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchAllAttributesRequest */ relatedType?: SearchAllAttributesRequestRelatedTypeEnum; /** * * @type {boolean} * @memberof SearchAllAttributesRequest */ includesRelations?: boolean; /** * * @type {Array} * @memberof SearchAllAttributesRequest */ type?: Array; /** * * @type {Array} * @memberof SearchAllAttributesRequest */ isFilterable?: Array; /** * * @type {Array} * @memberof SearchAllAttributesRequest */ isExpandedByDefault?: Array; } /** * @export */ export declare const SearchAllAttributesRequestSortByEnum: { readonly Id: "id"; readonly Name: "name"; readonly FilterIndex: "filter_index"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchAllAttributesRequestSortByEnum = typeof SearchAllAttributesRequestSortByEnum[keyof typeof SearchAllAttributesRequestSortByEnum]; /** * @export */ export declare const SearchAllAttributesRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchAllAttributesRequestSortDirectionEnum = typeof SearchAllAttributesRequestSortDirectionEnum[keyof typeof SearchAllAttributesRequestSortDirectionEnum]; /** * @export */ export declare const SearchAllAttributesRequestRelatedTypeEnum: { readonly ProductType: "productType"; readonly Category: "category"; readonly ProductRange: "productRange"; }; export type SearchAllAttributesRequestRelatedTypeEnum = typeof SearchAllAttributesRequestRelatedTypeEnum[keyof typeof SearchAllAttributesRequestRelatedTypeEnum]; /** * Check if a given object implements the SearchAllAttributesRequest interface. */ export declare function instanceOfSearchAllAttributesRequest(value: object): value is SearchAllAttributesRequest; export declare function SearchAllAttributesRequestFromJSON(json: any): SearchAllAttributesRequest; export declare function SearchAllAttributesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchAllAttributesRequest; export declare function SearchAllAttributesRequestToJSON(json: any): SearchAllAttributesRequest; export declare function SearchAllAttributesRequestToJSONTyped(value?: SearchAllAttributesRequest | null, ignoreDiscriminator?: boolean): any;