View Source GoogleApi.WorkflowExecutions.V1.Model.NavigationInfo (google_api_workflow_executions v0.8.0)

NavigationInfo describes what steps if any come before or after this step, or what steps are parents or children of this step.

Attributes

  • children (type: list(String.t), default: nil) - Step entries that can be reached by "stepping into" e.g. a subworkflow call.
  • next (type: String.t, default: nil) - The index of the next step in the current workflow, if any.
  • parent (type: String.t, default: nil) - The step entry, if any, that can be reached by "stepping out" of the current workflow being executed.
  • previous (type: String.t, default: nil) - The index of the previous step in the current workflow, if any.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.WorkflowExecutions.V1.Model.NavigationInfo{
  children: [String.t()] | nil,
  next: String.t() | nil,
  parent: String.t() | nil,
  previous: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.