Values.CreateSessionRequestSourceCreates a new session context within a workflow run to manage conversation state and acts.
type nonrec t = {workflowDefinitionName : WorkflowDefinitionName.t;The name of the workflow definition containing the workflow run.
*)workflowRunId : UuidString.t;The unique identifier of the workflow run to create the session in.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
*)}val make :
?clientToken:??? ->
workflowDefinitionName:WorkflowDefinitionName.t ->
workflowRunId:UuidString.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `String of WorkflowDefinitionName.t ]) list ]