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

19 lines
340 B
TypeScript
Raw Normal View History

2020-01-23 09:27:28 -08:00
import {
ICredentialType,
INodeProperties,
2020-01-23 09:27:28 -08:00
} from 'n8n-workflow';
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: '',
},
];
}