wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.59 kB
TypeScript
import type { LabelDescriptorGroup } from './LabelDescriptorGroup';
/**
*
* @export
* @interface LabelDescriptorGroupListResponse
*/
export interface LabelDescriptorGroupListResponse {
/**
* An array containing the actual response objects.
* @type {Array<LabelDescriptorGroup>}
* @memberof LabelDescriptorGroupListResponse
*/
readonly data?: Array<LabelDescriptorGroup>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof LabelDescriptorGroupListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof LabelDescriptorGroupListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the LabelDescriptorGroupListResponse interface.
*/
export declare function instanceOfLabelDescriptorGroupListResponse(value: object): value is LabelDescriptorGroupListResponse;
export declare function LabelDescriptorGroupListResponseFromJSON(json: any): LabelDescriptorGroupListResponse;
export declare function LabelDescriptorGroupListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LabelDescriptorGroupListResponse;
export declare function LabelDescriptorGroupListResponseToJSON(json: any): LabelDescriptorGroupListResponse;
export declare function LabelDescriptorGroupListResponseToJSONTyped(value?: Omit<LabelDescriptorGroupListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;