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