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