n8n/packages/nodes-base/credentials/MindeeInvoiceApi.credentials.ts
2020-10-06 10:23:58 +02:00

19 lines
358 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MindeeInvoiceApi implements ICredentialType {
name = 'mindeeInvoiceApi';
displayName = 'Mindee Invoice API';
documentationUrl = 'mindee';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}