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