UNPKG

@circle-fin/circle-sdk

Version:
32 lines (31 loc) 809 B
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Chain } from "./chain"; /** * * @export * @interface CryptoPaymentDepositAddress */ export interface CryptoPaymentDepositAddress { /** * * @type {Chain} * @memberof CryptoPaymentDepositAddress */ chain?: Chain; /** * * @type {string} * @memberof CryptoPaymentDepositAddress */ address?: string; /** * The secondary identifier for a blockchain address. An example of this is the memo field on the Stellar network, which can be text, id, or hash format. * @type {string} * @memberof CryptoPaymentDepositAddress */ addressTag?: string | null; }