@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
33 lines (32 loc) • 851 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.
*/
import { Chain } from "./chain";
import { Currency } from "./currency";
/**
*
* @export
* @interface BusinessGenerateAddressRequest
*/
export interface BusinessGenerateAddressRequest {
/**
* Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests.
* @type {string}
* @memberof BusinessGenerateAddressRequest
*/
idempotencyKey: string;
/**
*
* @type {Currency}
* @memberof BusinessGenerateAddressRequest
*/
currency: Currency | null;
/**
*
* @type {Chain}
* @memberof BusinessGenerateAddressRequest
*/
chain: Chain;
}