@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
34 lines (32 loc) • 737 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.
*/
/**
*
* @export
* @interface AddressBookRecipientMetadata
*/
export interface AddressBookRecipientMetadata {
/**
* Nickname related to the address.
* @type {string}
* @memberof AddressBookRecipientMetadata
*/
nickname?: string;
/**
* Email of the user.
* @type {string}
* @memberof AddressBookRecipientMetadata
*/
email?: string;
/**
* Blockchain Name Service (e.g. ENS) domain for the address.
* @type {string}
* @memberof AddressBookRecipientMetadata
*/
bns?: string;
}