UNPKG

@circle-fin/circle-sdk

Version:
63 lines (62 loc) 2.05 kB
/** * 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"; import { Currency } from "./currency"; /** * * @export * @interface BusinessRecipientAddressObject */ export interface BusinessRecipientAddressObject { /** * Unique system generated identifier for the entity. * @type {string} * @memberof BusinessRecipientAddressObject */ id?: string; /** * An alphanumeric string representing a blockchain address. Will be in different formats for different chains. It is important to preserve the exact formatting and capitalization of the address. * @type {string} * @memberof BusinessRecipientAddressObject */ 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 BusinessRecipientAddressObject */ addressTag?: string | null; /** * * @type {Chain} * @memberof BusinessRecipientAddressObject */ chain?: Chain; /** * * @type {Currency} * @memberof BusinessRecipientAddressObject */ currency?: Currency | null; /** * An identifier or sentence that describes the recipient. * @type {string} * @memberof BusinessRecipientAddressObject */ description?: string; /** * * @type {string} * @memberof BusinessRecipientAddressObject */ status?: BusinessRecipientAddressObjectStatusEnum; } export declare const BusinessRecipientAddressObjectStatusEnum: { readonly Active: "active"; readonly PendingVerification: "pending_verification"; readonly VerificationSucceeded: "verification_succeeded"; }; export declare type BusinessRecipientAddressObjectStatusEnum = typeof BusinessRecipientAddressObjectStatusEnum[keyof typeof BusinessRecipientAddressObjectStatusEnum];