UNPKG

@circle-fin/circle-sdk

Version:
41 lines (38 loc) 935 B
/* 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. */ // May contain unused imports in some cases // @ts-ignore import { Chain } from "./chain"; // May contain unused imports in some cases // @ts-ignore import { Currency } from "./currency"; /** * * @export * @interface GenerateAddressRequest */ export interface GenerateAddressRequest { /** * Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests. * @type {string} * @memberof GenerateAddressRequest */ idempotencyKey: string; /** * * @type {Currency} * @memberof GenerateAddressRequest */ currency: Currency | null; /** * * @type {Chain} * @memberof GenerateAddressRequest */ chain: Chain; }