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

19 lines
338 B
TypeScript
Raw Normal View History

2019-12-13 13:50:59 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class CodaApi implements ICredentialType {
name = 'codaApi';
displayName = 'Coda API';
documentationUrl = 'coda';
2019-12-13 13:50:59 -08:00
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}