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