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

20 lines
372 B
TypeScript
Raw Normal View History

2020-04-29 18:57:36 -07:00
import {
ICredentialType,
INodeProperties,
2020-04-29 18:57:36 -07:00
} from 'n8n-workflow';
export class FacebookGraphApi implements ICredentialType {
name = 'facebookGraphApi';
displayName = 'Facebook Graph API';
documentationUrl = 'facebookGraph';
properties: INodeProperties[] = [
2020-04-29 18:57:36 -07:00
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
2020-04-29 18:57:36 -07:00
default: '',
},
];
}