/** * Twist Node - Version 1 * Discriminator: resource=messageConversation, operation=getAll */ interface Credentials { twistOAuth2Api: CredentialReference; } /** Get many channels */ export type TwistV1MessageConversationGetAllParams = { resource: 'messageConversation'; operation: 'getAll'; /** * The ID of the workspace. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ workspaceId?: string | Expression; /** * The ID of the conversation. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ conversationId?: string | Expression; /** * Other options to set * @default {} */ additionalFields?: { /** Limit messages ending at the specified object index * @default 50 */ to_obj_index?: number | Expression; /** Max number of results to return * @default 50 */ limit?: number | Expression; /** The order of the conversations returned - one of DESC or ASC * @default ASC */ order_by?: 'ASC' | 'DESC' | Expression; /** Limit messages starting at the specified object index * @default 0 */ from_obj_index?: number | Expression; }; }; export type TwistV1MessageConversationGetAllNode = { type: 'n8n-nodes-base.twist'; version: 1; credentials?: Credentials; config: NodeConfig; };