Module Values.CreateBacklogTaskRequestSource

Request structure for creating a new backlog task

Sourcetype nonrec t = {
  1. agentSpaceId : AgentSpaceId.t;
    (*

    The unique identifier for the agent space where the task will be created

    *)
  2. reference : ReferenceInput.t option;
    (*

    Optional reference information for the task

    *)
  3. taskType : TaskType.t;
    (*

    The type of task being created

    *)
  4. title : BacklogTaskTitle.t;
    (*

    The title of the backlog task

    *)
  5. description : BacklogTaskDescription.t option;
    (*

    Optional detailed description of the task

    *)
  6. priority : Priority.t;
    (*

    The priority level of the task

    *)
  7. clientToken : String_.t option;
    (*

    Client-provided token for idempotent operations

    *)
}
Sourceval context_ : string
Sourceval make : ?reference:??? -> ?description:??? -> ?clientToken:??? -> agentSpaceId:AgentSpaceId.t -> taskType:TaskType.t -> title:BacklogTaskTitle.t -> priority:Priority.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AgentSpaceId.t | `Structure of (string * [> `String of ReferenceInputSystemString.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t