/**
 * Drift Node - Version 1
 * Discriminator: resource=contact, operation=getCustomAttributes
 */


interface Credentials {
  driftApi: CredentialReference;
  driftOAuth2Api: CredentialReference;
}

/** Get custom attributes */
export type DriftV1ContactGetCustomAttributesParams = {
  resource: 'contact';
  operation: 'getCustomAttributes';
  authentication?: 'accessToken' | 'oAuth2' | Expression<string>;
};

export type DriftV1ContactGetCustomAttributesNode = {
  type: 'n8n-nodes-base.drift';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<DriftV1ContactGetCustomAttributesParams>;
};