mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
20 lines
359 B
TypeScript
20 lines
359 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class PostmarkApi implements ICredentialType {
|
|
name = 'postmarkApi';
|
|
displayName = 'Postmark API';
|
|
documentationUrl = 'postmark';
|
|
properties = [
|
|
{
|
|
displayName: 'Server API Token',
|
|
name: 'serverToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|