Class NavigationInfo
NavigationInfo describes what steps if any come before or after this step, or what steps are parents or children of this step.
Implements
Inherited Members
Namespace: Google.Apis.WorkflowExecutions.v1.Data
Assembly: Google.Apis.WorkflowExecutions.v1.dll
Syntax
public class NavigationInfo : IDirectResponseSchema
Properties
Children
Step entries that can be reached by "stepping into" e.g. a subworkflow call.
Declaration
[JsonProperty("children")]
public virtual IList<long?> Children { get; set; }
Property Value
Type | Description |
---|---|
IList<long?> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Next
The index of the next step in the current workflow, if any.
Declaration
[JsonProperty("next")]
public virtual long? Next { get; set; }
Property Value
Type | Description |
---|---|
long? |
Parent
The step entry, if any, that can be reached by "stepping out" of the current workflow being executed.
Declaration
[JsonProperty("parent")]
public virtual long? Parent { get; set; }
Property Value
Type | Description |
---|---|
long? |
Previous
The index of the previous step in the current workflow, if any.
Declaration
[JsonProperty("previous")]
public virtual long? Previous { get; set; }
Property Value
Type | Description |
---|---|
long? |