UNPKG

@circle-fin/circle-sdk

Version:
38 lines (35 loc) 817 B
/* 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. */ // May contain unused imports in some cases // @ts-ignore import { CryptoPaymentsMoney } from "./crypto-payments-money"; /** * * @export * @interface NetworkFeeQuote */ export interface NetworkFeeQuote { /** * UUID of network fee quote * @type {string} * @memberof NetworkFeeQuote */ quoteId: string; /** * * @type {CryptoPaymentsMoney} * @memberof NetworkFeeQuote */ amount: CryptoPaymentsMoney; /** * The timestamp when the quote will expire at, in ISO-8601 UTC date/time format. * @type {string} * @memberof NetworkFeeQuote */ expiresAt: string; }