/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 SearchRequestAllOfPagination */ export interface SearchRequestAllOfPagination { /** * * @type {number} * @memberof SearchRequestAllOfPagination */ 'page'?: number; /** * * @type {number} * @memberof SearchRequestAllOfPagination */ 'pageSize'?: number; } /** * Check if a given object implements the SearchRequestAllOfPagination interface. */ export declare function instanceOfSearchRequestAllOfPagination(value: object): value is SearchRequestAllOfPagination; export declare function SearchRequestAllOfPaginationFromJSON(json: any): SearchRequestAllOfPagination; export declare function SearchRequestAllOfPaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchRequestAllOfPagination; export declare function SearchRequestAllOfPaginationToJSON(json: any): SearchRequestAllOfPagination; export declare function SearchRequestAllOfPaginationToJSONTyped(value?: SearchRequestAllOfPagination | null, ignoreDiscriminator?: boolean): any;