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