@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
29 lines (28 loc) • 983 B
TypeScript
/**
* 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 TransferRequestVerifiedBlockchainLocation
*/
export interface TransferRequestVerifiedBlockchainLocation {
/**
*
* @type {string}
* @memberof TransferRequestVerifiedBlockchainLocation
*/
type: TransferRequestVerifiedBlockchainLocationTypeEnum;
/**
* The ID of the verified blockchain recipient address.
* @type {string}
* @memberof TransferRequestVerifiedBlockchainLocation
*/
addressId: string;
}
export declare const TransferRequestVerifiedBlockchainLocationTypeEnum: {
readonly VerifiedBlockchain: "verified_blockchain";
};
export declare type TransferRequestVerifiedBlockchainLocationTypeEnum = typeof TransferRequestVerifiedBlockchainLocationTypeEnum[keyof typeof TransferRequestVerifiedBlockchainLocationTypeEnum];