/** * Freshservice Node - Version 1 * Discriminator: resource=problem, operation=create */ interface Credentials { freshserviceApi: CredentialReference; } /** Create an agent */ export type FreshserviceV1ProblemCreateParams = { resource: 'problem'; operation: 'create'; /** * Subject */ subject?: string | Expression | PlaceholderValue; /** * ID of the initiator of the problem. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ requesterId?: string | Expression; /** * Date when the problem is due to be solved */ dueBy?: string | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** ID of the agent to whom the problem is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ agent_id?: string | Expression; /** ID of the department initiating the problem. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ department_id?: string | Expression; /** HTML supported */ description?: string | Expression | PlaceholderValue; /** ID of the agent group to which the problem is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ group_id?: string | Expression; /** Impact * @default 1 */ impact?: 1 | 2 | 3 | Expression; /** Priority * @default 1 */ priority?: 1 | 2 | 3 | 4 | Expression; /** Status * @default 1 */ status?: 1 | 2 | 3 | Expression; }; }; export type FreshserviceV1ProblemCreateNode = { type: 'n8n-nodes-base.freshservice'; version: 1; credentials?: Credentials; config: NodeConfig; };