UNPKG

@circle-fin/circle-sdk

Version:
37 lines (36 loc) 1.06 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 { Identity } from "./identity"; /** * A source blockchain address. * @export * @interface TransferSourceBlockchainLocation */ export interface TransferSourceBlockchainLocation { /** * * @type {string} * @memberof TransferSourceBlockchainLocation */ type: TransferSourceBlockchainLocationTypeEnum; /** * * @type {Chain} * @memberof TransferSourceBlockchainLocation */ chain: Chain; /** * * @type {Array<Identity>} * @memberof TransferSourceBlockchainLocation */ identities?: Array<Identity>; } export declare const TransferSourceBlockchainLocationTypeEnum: { readonly Blockchain: "blockchain"; }; export declare type TransferSourceBlockchainLocationTypeEnum = typeof TransferSourceBlockchainLocationTypeEnum[keyof typeof TransferSourceBlockchainLocationTypeEnum];