Values.StartWorkflowRunRequestSourceBegins a run of a specified workflow.
type nonrec t = {spaceName : StartWorkflowRunRequestSpaceNameString.t;The name of the space.
*)projectName : StartWorkflowRunRequestProjectNameString.t;The name of the project in the space.
*)workflowId : Uuid.t;The system-generated unique ID of the workflow. To retrieve a list of workflow IDs, use ListWorkflows.
*)clientToken : StartWorkflowRunRequestClientTokenString.t option;A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
*)}val make :
?clientToken:??? ->
spaceName:StartWorkflowRunRequestSpaceNameString.t ->
projectName:StartWorkflowRunRequestProjectNameString.t ->
workflowId:Uuid.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of StartWorkflowRunRequestSpaceNameString.t ]) list ]