n8n-nodes-wassenger
Version:
n8n plugin for Wassenger
21 lines (20 loc) • 565 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiKey = void 0;
class ApiKey {
constructor() {
this.name = 'wassengerApiKey';
this.displayName = 'Wassenger API Key';
this.documentationUrl = 'https://app.wassenger.com/docs';
this.properties = [
{
displayName: 'API Key',
name: 'wassengerApiKey',
type: 'string',
default: '',
required: true,
},
];
}
}
exports.ApiKey = ApiKey;