n8n/packages/nodes-base/credentials/SegmentApi.credentials.ts

16 lines
337 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-01-23 09:27:28 -08:00
export class SegmentApi implements ICredentialType {
name = 'segmentApi';
displayName = 'Segment API';
documentationUrl = 'segment';
properties: INodeProperties[] = [
2020-01-23 09:27:28 -08:00
{
displayName: 'Write Key',
name: 'writekey',
type: 'string',
2020-01-23 09:27:28 -08:00
default: '',
},
];
}