wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.74 kB
TypeScript
import type { PaymentTerminalTransactionSummary } from './PaymentTerminalTransactionSummary';
/**
*
* @export
* @interface TerminalTransactionSummaryListResponse
*/
export interface TerminalTransactionSummaryListResponse {
/**
* An array containing the actual response objects.
* @type {Array<PaymentTerminalTransactionSummary>}
* @memberof TerminalTransactionSummaryListResponse
*/
readonly data?: Array<PaymentTerminalTransactionSummary>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof TerminalTransactionSummaryListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof TerminalTransactionSummaryListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the TerminalTransactionSummaryListResponse interface.
*/
export declare function instanceOfTerminalTransactionSummaryListResponse(value: object): value is TerminalTransactionSummaryListResponse;
export declare function TerminalTransactionSummaryListResponseFromJSON(json: any): TerminalTransactionSummaryListResponse;
export declare function TerminalTransactionSummaryListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TerminalTransactionSummaryListResponse;
export declare function TerminalTransactionSummaryListResponseToJSON(json: any): TerminalTransactionSummaryListResponse;
export declare function TerminalTransactionSummaryListResponseToJSONTyped(value?: Omit<TerminalTransactionSummaryListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;