/** * 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 SearchSitesRequest */ export interface SearchSitesRequest { /** * * @type {string} * @memberof SearchSitesRequest */ search?: string | null; /** * * @type {string} * @memberof SearchSitesRequest */ sortBy?: SearchSitesRequestSortByEnum; /** * * @type {string} * @memberof SearchSitesRequest */ sortDirection?: SearchSitesRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchSitesRequest */ perPage?: number; /** * * @type {number} * @memberof SearchSitesRequest */ page?: number; /** * * @type {number} * @memberof SearchSitesRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchSitesRequest */ relatedType?: string; /** * * @type {boolean} * @memberof SearchSitesRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchSitesRequestSortByEnum: { readonly Id: "id"; readonly Name: "name"; readonly Abbreviation: "abbreviation"; readonly CreatedAt: "created_at"; readonly UpdatedAt: "updated_at"; }; export type SearchSitesRequestSortByEnum = typeof SearchSitesRequestSortByEnum[keyof typeof SearchSitesRequestSortByEnum]; /** * @export */ export declare const SearchSitesRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchSitesRequestSortDirectionEnum = typeof SearchSitesRequestSortDirectionEnum[keyof typeof SearchSitesRequestSortDirectionEnum]; /** * Check if a given object implements the SearchSitesRequest interface. */ export declare function instanceOfSearchSitesRequest(value: object): value is SearchSitesRequest; export declare function SearchSitesRequestFromJSON(json: any): SearchSitesRequest; export declare function SearchSitesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchSitesRequest; export declare function SearchSitesRequestToJSON(json: any): SearchSitesRequest; export declare function SearchSitesRequestToJSONTyped(value?: SearchSitesRequest | null, ignoreDiscriminator?: boolean): any;