wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.69 kB
TypeScript
import type { LabelDescriptor } from './LabelDescriptor';
/**
*
* @export
* @interface LabelDescriptorSearchResponse
*/
export interface LabelDescriptorSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<LabelDescriptor>}
* @memberof LabelDescriptorSearchResponse
*/
readonly data?: Array<LabelDescriptor>;
/**
* The number of skipped objects.
* @type {number}
* @memberof LabelDescriptorSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof LabelDescriptorSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof LabelDescriptorSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the LabelDescriptorSearchResponse interface.
*/
export declare function instanceOfLabelDescriptorSearchResponse(value: object): value is LabelDescriptorSearchResponse;
export declare function LabelDescriptorSearchResponseFromJSON(json: any): LabelDescriptorSearchResponse;
export declare function LabelDescriptorSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LabelDescriptorSearchResponse;
export declare function LabelDescriptorSearchResponseToJSON(json: any): LabelDescriptorSearchResponse;
export declare function LabelDescriptorSearchResponseToJSONTyped(value?: Omit<LabelDescriptorSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;