import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class GoogleApi implements ICredentialType {
name = 'googleApi';
displayName = 'Google API';
documentationUrl = 'google';
properties = [
{
displayName: 'Email',
name: 'email',
type: 'string' as NodePropertyTypes,
default: '',
description: 'The Google Service account similar to user-808@project.iam.gserviceaccount.com.
See the tutorial on how to create one.',
},
{
displayName: 'Private Key',
name: 'privateKey',
lines: 5,
type: 'string' as NodePropertyTypes,
default: '',
description: 'Use the multiline editor. Make sure there are exactly 3 lines.
-----BEGIN PRIVATE KEY-----
KEY IN A SINGLE LINE
-----END PRIVATE KEY-----',
},
];
}