UNPKG

wallee

Version:
41 lines (40 loc) 1.65 kB
import type { ConditionType } from './ConditionType'; /** * * @export * @interface ConditionTypeSearchResponse */ export interface ConditionTypeSearchResponse { /** * An array containing the actual response objects. * @type {Array<ConditionType>} * @memberof ConditionTypeSearchResponse */ readonly data?: Array<ConditionType>; /** * The number of skipped objects. * @type {number} * @memberof ConditionTypeSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ConditionTypeSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ConditionTypeSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the ConditionTypeSearchResponse interface. */ export declare function instanceOfConditionTypeSearchResponse(value: object): value is ConditionTypeSearchResponse; export declare function ConditionTypeSearchResponseFromJSON(json: any): ConditionTypeSearchResponse; export declare function ConditionTypeSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConditionTypeSearchResponse; export declare function ConditionTypeSearchResponseToJSON(json: any): ConditionTypeSearchResponse; export declare function ConditionTypeSearchResponseToJSONTyped(value?: Omit<ConditionTypeSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;