UNPKG

wallee

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