@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
45 lines (40 loc) • 1.05 kB
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.
*/
// May contain unused imports in some cases
// @ts-ignore
import { Identity } from "./identity";
/**
* A source wallet location.
* @export
* @interface TransferSourceWalletLocation
*/
export interface TransferSourceWalletLocation {
/**
*
* @type {string}
* @memberof TransferSourceWalletLocation
*/
type: TransferSourceWalletLocationTypeEnum;
/**
* The id of the wallet.
* @type {string}
* @memberof TransferSourceWalletLocation
*/
id: string;
/**
*
* @type {Array<Identity>}
* @memberof TransferSourceWalletLocation
*/
identities?: Array<Identity>;
}
export const TransferSourceWalletLocationTypeEnum = {
Wallet: "wallet"
} as const;
export type TransferSourceWalletLocationTypeEnum =
typeof TransferSourceWalletLocationTypeEnum[keyof typeof TransferSourceWalletLocationTypeEnum];