@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
34 lines (32 loc) • 672 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Rate
*/
export interface Rate {
/**
* The buy rate denominated in the quote currency of the trading pair.
* @type {string}
* @memberof Rate
*/
buy: string;
/**
* The sell rate denominated in the quote currency of the trading pair.
* @type {string}
* @memberof Rate
*/
sell: string;
/**
* ISO-8601 UTC date/time format.
* @type {string}
* @memberof Rate
*/
createDate: string;
}