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

21 lines
359 B
TypeScript
Raw Normal View History

2020-06-30 13:35:31 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class CustomerIoApi implements ICredentialType {
name = 'customerIoApi';
displayName = 'Customer.io API';
documentationUrl = 'customerIo';
2020-06-30 13:35:31 -07:00
properties = [
{
2020-08-04 01:32:51 -07:00
displayName: 'App API Key',
2020-06-30 13:35:31 -07:00
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}