/** * 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 SearchAttributeValuesRequest */ export interface SearchAttributeValuesRequest { /** * * @type {string} * @memberof SearchAttributeValuesRequest */ search?: string | null; /** * * @type {string} * @memberof SearchAttributeValuesRequest */ sortBy?: SearchAttributeValuesRequestSortByEnum; /** * * @type {string} * @memberof SearchAttributeValuesRequest */ sortDirection?: SearchAttributeValuesRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchAttributeValuesRequest */ perPage?: number; /** * * @type {number} * @memberof SearchAttributeValuesRequest */ page?: number; /** * * @type {Array} * @memberof SearchAttributeValuesRequest */ attributeId?: Array; /** * * @type {number} * @memberof SearchAttributeValuesRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchAttributeValuesRequest */ relatedType?: SearchAttributeValuesRequestRelatedTypeEnum; /** * * @type {boolean} * @memberof SearchAttributeValuesRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchAttributeValuesRequestSortByEnum: { readonly Id: "id"; readonly Value: "value"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchAttributeValuesRequestSortByEnum = typeof SearchAttributeValuesRequestSortByEnum[keyof typeof SearchAttributeValuesRequestSortByEnum]; /** * @export */ export declare const SearchAttributeValuesRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchAttributeValuesRequestSortDirectionEnum = typeof SearchAttributeValuesRequestSortDirectionEnum[keyof typeof SearchAttributeValuesRequestSortDirectionEnum]; /** * @export */ export declare const SearchAttributeValuesRequestRelatedTypeEnum: { readonly Attribute: "attribute"; }; export type SearchAttributeValuesRequestRelatedTypeEnum = typeof SearchAttributeValuesRequestRelatedTypeEnum[keyof typeof SearchAttributeValuesRequestRelatedTypeEnum]; /** * Check if a given object implements the SearchAttributeValuesRequest interface. */ export declare function instanceOfSearchAttributeValuesRequest(value: object): value is SearchAttributeValuesRequest; export declare function SearchAttributeValuesRequestFromJSON(json: any): SearchAttributeValuesRequest; export declare function SearchAttributeValuesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchAttributeValuesRequest; export declare function SearchAttributeValuesRequestToJSON(json: any): SearchAttributeValuesRequest; export declare function SearchAttributeValuesRequestToJSONTyped(value?: SearchAttributeValuesRequest | null, ignoreDiscriminator?: boolean): any;