import type { DocumentTemplateType } from './DocumentTemplateType'; /** * * @export * @interface DocumentTemplateTypeListResponse */ export interface DocumentTemplateTypeListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof DocumentTemplateTypeListResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;