UNPKG

wallee

Version:
35 lines (34 loc) 1.55 kB
import type { TransactionComment } from './TransactionComment'; /** * * @export * @interface TransactionCommentListResponse */ export interface TransactionCommentListResponse { /** * An array containing the actual response objects. * @type {Array<TransactionComment>} * @memberof TransactionCommentListResponse */ readonly data?: Array<TransactionComment>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof TransactionCommentListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof TransactionCommentListResponse */ readonly limit?: number; } /** * Check if a given object implements the TransactionCommentListResponse interface. */ export declare function instanceOfTransactionCommentListResponse(value: object): value is TransactionCommentListResponse; export declare function TransactionCommentListResponseFromJSON(json: any): TransactionCommentListResponse; export declare function TransactionCommentListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionCommentListResponse; export declare function TransactionCommentListResponseToJSON(json: any): TransactionCommentListResponse; export declare function TransactionCommentListResponseToJSONTyped(value?: Omit<TransactionCommentListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;