UNPKG

wallee

Version:
41 lines (40 loc) 1.95 kB
import type { PaymentTerminalTransactionSummary } from './PaymentTerminalTransactionSummary'; /** * * @export * @interface TerminalTransactionSummarySearchResponse */ export interface TerminalTransactionSummarySearchResponse { /** * An array containing the actual response objects. * @type {Array<PaymentTerminalTransactionSummary>} * @memberof TerminalTransactionSummarySearchResponse */ readonly data?: Array<PaymentTerminalTransactionSummary>; /** * The number of skipped objects. * @type {number} * @memberof TerminalTransactionSummarySearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof TerminalTransactionSummarySearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof TerminalTransactionSummarySearchResponse */ readonly limit?: number; } /** * Check if a given object implements the TerminalTransactionSummarySearchResponse interface. */ export declare function instanceOfTerminalTransactionSummarySearchResponse(value: object): value is TerminalTransactionSummarySearchResponse; export declare function TerminalTransactionSummarySearchResponseFromJSON(json: any): TerminalTransactionSummarySearchResponse; export declare function TerminalTransactionSummarySearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TerminalTransactionSummarySearchResponse; export declare function TerminalTransactionSummarySearchResponseToJSON(json: any): TerminalTransactionSummarySearchResponse; export declare function TerminalTransactionSummarySearchResponseToJSONTyped(value?: Omit<TerminalTransactionSummarySearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;