Module Values.UpdateBacklogTaskRequestSource

Request structure for updating a task

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

    The unique identifier for the agent space containing the task

    *)
  2. taskId : ResourceId.t;
    (*

    The unique identifier of the task to update

    *)
  3. taskStatus : TaskStatus.t option;
    (*

    Updated task status

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

    Client-provided token for idempotent operations

    *)
}
Sourceval context_ : string
Sourceval make : ?taskStatus:??? -> ?clientToken:??? -> agentSpaceId:AgentSpaceId.t -> taskId:ResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AgentSpaceId.t ]) 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