UNPKG

wallee

Version:
41 lines (40 loc) 1.71 kB
import type { DocumentTemplate } from './DocumentTemplate'; /** * * @export * @interface DocumentTemplateSearchResponse */ export interface DocumentTemplateSearchResponse { /** * An array containing the actual response objects. * @type {Array<DocumentTemplate>} * @memberof DocumentTemplateSearchResponse */ readonly data?: Array<DocumentTemplate>; /** * 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<DocumentTemplateSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;