wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.56 kB
TypeScript
import type { RestCurrency } from './RestCurrency';
/**
*
* @export
* @interface CurrencySearchResponse
*/
export interface CurrencySearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<RestCurrency>}
* @memberof CurrencySearchResponse
*/
readonly data?: Array<RestCurrency>;
/**
* 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<CurrencySearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;