UNPKG

n8n-nodes-fxcm

Version:
48 lines (47 loc) 1.34 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FxcmApi = void 0; class FxcmApi { constructor() { this.name = 'fxcmApi'; this.displayName = 'FXCM API'; this.documentationUrl = 'https://docs.fxcm.com'; this.properties = [ { displayName: 'API Token', name: 'apiToken', type: 'string', typeOptions: { password: true, }, default: '', required: true, }, { displayName: 'Account Type', name: 'accountType', type: 'options', options: [ { name: 'Demo', value: 'demo', }, { name: 'Live', value: 'live', }, ], default: 'demo', required: true, }, { displayName: 'Trading Station ID', name: 'tradingStationId', type: 'string', default: '', required: true, }, ]; } } exports.FxcmApi = FxcmApi;