UNPKG

wallee

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