n8n/packages/nodes-base/credentials/DropboxApi.credentials.ts
2021-06-12 18:39:55 +02:00

35 lines
593 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class DropboxApi implements ICredentialType {
name = 'dropboxApi';
displayName = 'Dropbox API';
documentationUrl = 'dropbox';
properties: INodeProperties[] = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
default: '',
},
{
displayName: 'APP Access Type',
name: 'accessType',
type: 'options',
options: [
{
name: 'App Folder',
value: 'folder',
},
{
name: 'Full Dropbox',
value: 'full',
},
],
default: 'full',
},
];
}