/** * 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 SearchAllFrontendComponentsRequest */ export interface SearchAllFrontendComponentsRequest { /** * * @type {string} * @memberof SearchAllFrontendComponentsRequest */ search?: string | null; /** * * @type {string} * @memberof SearchAllFrontendComponentsRequest */ sortBy?: SearchAllFrontendComponentsRequestSortByEnum; /** * * @type {string} * @memberof SearchAllFrontendComponentsRequest */ sortDirection?: SearchAllFrontendComponentsRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchAllFrontendComponentsRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchAllFrontendComponentsRequest */ relatedType?: string; /** * * @type {boolean} * @memberof SearchAllFrontendComponentsRequest */ includesRelations?: boolean; /** * * @type {Array} * @memberof SearchAllFrontendComponentsRequest */ sitesId?: Array; /** * * @type {string} * @memberof SearchAllFrontendComponentsRequest */ pageType?: SearchAllFrontendComponentsRequestPageTypeEnum | null; } /** * @export */ export declare const SearchAllFrontendComponentsRequestSortByEnum: { readonly Id: "id"; readonly Name: "name"; }; export type SearchAllFrontendComponentsRequestSortByEnum = typeof SearchAllFrontendComponentsRequestSortByEnum[keyof typeof SearchAllFrontendComponentsRequestSortByEnum]; /** * @export */ export declare const SearchAllFrontendComponentsRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchAllFrontendComponentsRequestSortDirectionEnum = typeof SearchAllFrontendComponentsRequestSortDirectionEnum[keyof typeof SearchAllFrontendComponentsRequestSortDirectionEnum]; /** * @export */ export declare const SearchAllFrontendComponentsRequestPageTypeEnum: { readonly Home: "home"; readonly Page: "page"; readonly Blog: "blog"; }; export type SearchAllFrontendComponentsRequestPageTypeEnum = typeof SearchAllFrontendComponentsRequestPageTypeEnum[keyof typeof SearchAllFrontendComponentsRequestPageTypeEnum]; /** * Check if a given object implements the SearchAllFrontendComponentsRequest interface. */ export declare function instanceOfSearchAllFrontendComponentsRequest(value: object): value is SearchAllFrontendComponentsRequest; export declare function SearchAllFrontendComponentsRequestFromJSON(json: any): SearchAllFrontendComponentsRequest; export declare function SearchAllFrontendComponentsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchAllFrontendComponentsRequest; export declare function SearchAllFrontendComponentsRequestToJSON(json: any): SearchAllFrontendComponentsRequest; export declare function SearchAllFrontendComponentsRequestToJSONTyped(value?: SearchAllFrontendComponentsRequest | null, ignoreDiscriminator?: boolean): any;