/** * 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 SearchAllAttributeValuesRequest */ export interface SearchAllAttributeValuesRequest { /** * * @type {string} * @memberof SearchAllAttributeValuesRequest */ search?: string | null; /** * * @type {string} * @memberof SearchAllAttributeValuesRequest */ sortBy?: SearchAllAttributeValuesRequestSortByEnum; /** * * @type {string} * @memberof SearchAllAttributeValuesRequest */ sortDirection?: SearchAllAttributeValuesRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchAllAttributeValuesRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchAllAttributeValuesRequest */ relatedType?: SearchAllAttributeValuesRequestRelatedTypeEnum; /** * * @type {boolean} * @memberof SearchAllAttributeValuesRequest */ includesRelations?: boolean; /** * * @type {Array} * @memberof SearchAllAttributeValuesRequest */ attributeId?: Array; } /** * @export */ export declare const SearchAllAttributeValuesRequestSortByEnum: { readonly Id: "id"; readonly Value: "value"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchAllAttributeValuesRequestSortByEnum = typeof SearchAllAttributeValuesRequestSortByEnum[keyof typeof SearchAllAttributeValuesRequestSortByEnum]; /** * @export */ export declare const SearchAllAttributeValuesRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchAllAttributeValuesRequestSortDirectionEnum = typeof SearchAllAttributeValuesRequestSortDirectionEnum[keyof typeof SearchAllAttributeValuesRequestSortDirectionEnum]; /** * @export */ export declare const SearchAllAttributeValuesRequestRelatedTypeEnum: { readonly Attribute: "attribute"; }; export type SearchAllAttributeValuesRequestRelatedTypeEnum = typeof SearchAllAttributeValuesRequestRelatedTypeEnum[keyof typeof SearchAllAttributeValuesRequestRelatedTypeEnum]; /** * Check if a given object implements the SearchAllAttributeValuesRequest interface. */ export declare function instanceOfSearchAllAttributeValuesRequest(value: object): value is SearchAllAttributeValuesRequest; export declare function SearchAllAttributeValuesRequestFromJSON(json: any): SearchAllAttributeValuesRequest; export declare function SearchAllAttributeValuesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchAllAttributeValuesRequest; export declare function SearchAllAttributeValuesRequestToJSON(json: any): SearchAllAttributeValuesRequest; export declare function SearchAllAttributeValuesRequestToJSONTyped(value?: SearchAllAttributeValuesRequest | null, ignoreDiscriminator?: boolean): any;