2019-11-12 12:48:45 -08:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2019-11-12 12:48:45 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2019-11-14 15:44:07 -08:00
|
|
|
export class MailchimpApi implements ICredentialType {
|
2019-11-12 12:48:45 -08:00
|
|
|
name = 'mailchimpApi';
|
|
|
|
displayName = 'Mailchimp API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'mailchimp';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2019-11-12 12:48:45 -08:00
|
|
|
{
|
|
|
|
displayName: 'API Key',
|
|
|
|
name: 'apiKey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2019-11-12 12:48:45 -08:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|