/** * Salesforce Node - Version 1 * Discriminator: resource=customObject, operation=get */ interface Credentials { salesforceOAuth2Api: CredentialReference; salesforceJwtApi: CredentialReference; } /** Represents a custom object */ export type SalesforceV1CustomObjectGetParams = { resource: 'customObject'; operation: 'get'; /** * OAuth Authorization Flow * @default oAuth2 */ authentication?: 'oAuth2' | 'jwt' | Expression; /** * Name of the custom object. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ customObject?: string | Expression; /** * Record ID to be retrieved */ recordId?: string | Expression | PlaceholderValue; }; export type SalesforceV1CustomObjectGetOutput = { attributes?: { type?: string; url?: string; }; CreatedById?: string; CreatedDate?: string; CurrencyIsoCode?: string; Id?: string; IsDeleted?: boolean; LastModifiedById?: string; LastModifiedDate?: string; Name?: string; OwnerId?: string; SystemModstamp?: string; }; export type SalesforceV1CustomObjectGetNode = { type: 'n8n-nodes-base.salesforce'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };