/** * 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 SearchSiteNotificationsRequest */ export interface SearchSiteNotificationsRequest { /** * * @type {string} * @memberof SearchSiteNotificationsRequest */ search?: string | null; /** * * @type {string} * @memberof SearchSiteNotificationsRequest */ sortBy?: SearchSiteNotificationsRequestSortByEnum; /** * * @type {string} * @memberof SearchSiteNotificationsRequest */ sortDirection?: SearchSiteNotificationsRequestSortDirectionEnum; /** * * @type {number} * @memberof SearchSiteNotificationsRequest */ perPage?: number; /** * * @type {number} * @memberof SearchSiteNotificationsRequest */ page?: number; /** * * @type {Array} * @memberof SearchSiteNotificationsRequest */ siteId?: Array; /** * * @type {number} * @memberof SearchSiteNotificationsRequest */ relatedId?: number; /** * * @type {string} * @memberof SearchSiteNotificationsRequest */ relatedType?: string; /** * * @type {boolean} * @memberof SearchSiteNotificationsRequest */ includesRelations?: boolean; } /** * @export */ export declare const SearchSiteNotificationsRequestSortByEnum: { readonly Id: "id"; readonly Text: "text"; readonly StartDate: "start_date"; readonly EndDate: "end_date"; readonly CreatedAt: "created_at"; }; export type SearchSiteNotificationsRequestSortByEnum = typeof SearchSiteNotificationsRequestSortByEnum[keyof typeof SearchSiteNotificationsRequestSortByEnum]; /** * @export */ export declare const SearchSiteNotificationsRequestSortDirectionEnum: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type SearchSiteNotificationsRequestSortDirectionEnum = typeof SearchSiteNotificationsRequestSortDirectionEnum[keyof typeof SearchSiteNotificationsRequestSortDirectionEnum]; /** * Check if a given object implements the SearchSiteNotificationsRequest interface. */ export declare function instanceOfSearchSiteNotificationsRequest(value: object): value is SearchSiteNotificationsRequest; export declare function SearchSiteNotificationsRequestFromJSON(json: any): SearchSiteNotificationsRequest; export declare function SearchSiteNotificationsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchSiteNotificationsRequest; export declare function SearchSiteNotificationsRequestToJSON(json: any): SearchSiteNotificationsRequest; export declare function SearchSiteNotificationsRequestToJSONTyped(value?: SearchSiteNotificationsRequest | null, ignoreDiscriminator?: boolean): any;