/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * description: "description", * id: "id", * orgId: "orgId" * } */ export interface UpdateAutomationDescriptionInputBody { /** New description for the automation */ description: string; /** ID of the automation to update */ id: string; /** Organization ID */ orgId: string; }