import { ICredentialType, INodeProperties, } from 'n8n-workflow'; export class SurveyMonkeyApi implements ICredentialType { name = 'surveyMonkeyApi'; displayName = 'SurveyMonkey API'; documentationUrl = 'surveyMonkey'; properties: INodeProperties[] = [ { displayName: 'Access Token', name: 'accessToken', type: 'string', default: '', description: `The access token must have the following scopes: `, }, { displayName: 'Client ID', name: 'clientId', type: 'string', default: '', }, { displayName: 'Client Secret', name: 'clientSecret', type: 'string', default: '', }, ]; }