import type { LabelDescriptorGroup } from './LabelDescriptorGroup'; /** * * @export * @interface LabelDescriptorGroupSearchResponse */ export interface LabelDescriptorGroupSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof LabelDescriptorGroupSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof LabelDescriptorGroupSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof LabelDescriptorGroupSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof LabelDescriptorGroupSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the LabelDescriptorGroupSearchResponse interface. */ export declare function instanceOfLabelDescriptorGroupSearchResponse(value: object): value is LabelDescriptorGroupSearchResponse; export declare function LabelDescriptorGroupSearchResponseFromJSON(json: any): LabelDescriptorGroupSearchResponse; export declare function LabelDescriptorGroupSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LabelDescriptorGroupSearchResponse; export declare function LabelDescriptorGroupSearchResponseToJSON(json: any): LabelDescriptorGroupSearchResponse; export declare function LabelDescriptorGroupSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;