@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
29 lines (28 loc) • 677 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.
*/
/**
*
* @export
* @interface WalletLocation
*/
export interface WalletLocation {
/**
*
* @type {string}
* @memberof WalletLocation
*/
type: WalletLocationTypeEnum;
/**
* The id of the wallet.
* @type {string}
* @memberof WalletLocation
*/
id: string;
}
export declare const WalletLocationTypeEnum: {
readonly Wallet: "wallet";
};
export declare type WalletLocationTypeEnum = typeof WalletLocationTypeEnum[keyof typeof WalletLocationTypeEnum];