@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
38 lines (35 loc) • 913 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import { Chain } from "./chain";
/**
* The destination of a crypto refund.
* @export
* @interface CryptoRefundDestination
*/
export interface CryptoRefundDestination {
/**
* The blockchain address.
* @type {string}
* @memberof CryptoRefundDestination
*/
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 CryptoRefundDestination
*/
addressTag?: string | null;
/**
*
* @type {Chain}
* @memberof CryptoRefundDestination
*/
chain: Chain;
}