Values.CreateBacklogTaskRequestSourceRequest structure for creating a new backlog task
type nonrec t = {agentSpaceId : AgentSpaceId.t;The unique identifier for the agent space where the task will be created
*)reference : ReferenceInput.t option;Optional reference information for the task
*)taskType : TaskType.t;The type of task being created
*)title : BacklogTaskTitle.t;The title of the backlog task
*)description : BacklogTaskDescription.t option;Optional detailed description of the task
*)priority : Priority.t;The priority level of the task
*)clientToken : String_.t option;Client-provided token for idempotent operations
*)}val make :
?reference:??? ->
?description:??? ->
?clientToken:??? ->
agentSpaceId:AgentSpaceId.t ->
taskType:TaskType.t ->
title:BacklogTaskTitle.t ->
priority:Priority.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of AgentSpaceId.t
| `Structure of
(string * [> `String of ReferenceInputSystemString.t ]) list ])
list ]