@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
42 lines (41 loc) • 1.29 kB
TypeScript
/**
* 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 TransferRequestBlockchainLocation
*/
export interface TransferRequestBlockchainLocation {
/**
*
* @type {string}
* @memberof TransferRequestBlockchainLocation
*/
type: TransferRequestBlockchainLocationTypeEnum;
/**
* The blockchain address.
* @type {string}
* @memberof TransferRequestBlockchainLocation
*/
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 TransferRequestBlockchainLocation
*/
addressTag?: string | null;
/**
*
* @type {Chain}
* @memberof TransferRequestBlockchainLocation
*/
chain: Chain;
}
export declare const TransferRequestBlockchainLocationTypeEnum: {
readonly Blockchain: "blockchain";
};
export declare type TransferRequestBlockchainLocationTypeEnum = typeof TransferRequestBlockchainLocationTypeEnum[keyof typeof TransferRequestBlockchainLocationTypeEnum];