/** * 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 SearchLabelsRequest */ export interface SearchLabelsRequest { /** * * @type {string} * @memberof SearchLabelsRequest */ search?: string | null; /** * * @type {string} * @memberof SearchLabelsRequest */ sortBy?: SearchLabelsRequestSortByEnum; /** * * @type {string} * @memberof SearchLabelsRequest */ sortDirection?: SearchLabelsRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchLabelsRequest */ perPage?: number; /** * * @type {number} * @memberof SearchLabelsRequest */ page?: number; /** * * @type {Array} * @memberof SearchLabelsRequest */ siteId?: Array; /** * * @type {number} * @memberof SearchLabelsRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchLabelsRequest */ relatedType?: SearchLabelsRequestRelatedTypeEnum; /** * * @type {boolean} * @memberof SearchLabelsRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchLabelsRequestSortByEnum: { readonly Id: "id"; readonly ShortName: "short_name"; readonly LongName: "long_name"; readonly StartDate: "start_date"; readonly EndDate: "end_date"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchLabelsRequestSortByEnum = typeof SearchLabelsRequestSortByEnum[keyof typeof SearchLabelsRequestSortByEnum]; /** * @export */ export declare const SearchLabelsRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchLabelsRequestSortDirectionEnum = typeof SearchLabelsRequestSortDirectionEnum[keyof typeof SearchLabelsRequestSortDirectionEnum]; /** * @export */ export declare const SearchLabelsRequestRelatedTypeEnum: { readonly Site: "site"; readonly ProductChild: "productChild"; }; export type SearchLabelsRequestRelatedTypeEnum = typeof SearchLabelsRequestRelatedTypeEnum[keyof typeof SearchLabelsRequestRelatedTypeEnum]; /** * Check if a given object implements the SearchLabelsRequest interface. */ export declare function instanceOfSearchLabelsRequest(value: object): value is SearchLabelsRequest; export declare function SearchLabelsRequestFromJSON(json: any): SearchLabelsRequest; export declare function SearchLabelsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchLabelsRequest; export declare function SearchLabelsRequestToJSON(json: any): SearchLabelsRequest; export declare function SearchLabelsRequestToJSONTyped(value?: SearchLabelsRequest | null, ignoreDiscriminator?: boolean): any;