/** * HubSpot Node - Version 1 * Discriminator: resource=engagement, operation=get */ interface Credentials { hubspotApi: CredentialReference; hubspotAppToken: CredentialReference; hubspotOAuth2Api: CredentialReference; } /** Get a contact */ export type HubspotV1EngagementGetParams = { resource: 'engagement'; operation: 'get'; authentication?: 'apiKey' | 'appToken' | 'oAuth2' | Expression; /** * Unique identifier for a particular engagement */ engagementId?: string | Expression | PlaceholderValue; }; export type HubspotV1EngagementGetNode = { type: 'n8n-nodes-base.hubspot'; version: 1; credentials?: Credentials; config: NodeConfig; };