import type { RestCurrency } from './RestCurrency'; /** * * @export * @interface CurrencyListResponse */ export interface CurrencyListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof CurrencyListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof CurrencyListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof CurrencyListResponse */ readonly limit?: number; } /** * Check if a given object implements the CurrencyListResponse interface. */ export declare function instanceOfCurrencyListResponse(value: object): value is CurrencyListResponse; export declare function CurrencyListResponseFromJSON(json: any): CurrencyListResponse; export declare function CurrencyListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurrencyListResponse; export declare function CurrencyListResponseToJSON(json: any): CurrencyListResponse; export declare function CurrencyListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;