Class ListStepEntriesResponse
Response message for ExecutionHistory.ListStepEntries.
Implements
Inherited Members
Namespace: Google.Apis.WorkflowExecutions.v1.Data
Assembly: Google.Apis.WorkflowExecutions.v1.dll
Syntax
public class ListStepEntriesResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
A token to retrieve next page of results. Pass this value in the ListStepEntriesRequest.page_token field in
the subsequent call to ListStepEntries
method to retrieve the next page of results.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
StepEntries
The list of entries.
Declaration
[JsonProperty("stepEntries")]
public virtual IList<StepEntry> StepEntries { get; set; }
Property Value
Type | Description |
---|---|
IList<StepEntry> |
TotalSize
Indicates the total number of StepEntries that matched the request filter. For running executions, this number shows the number of StepEntries that are executed thus far.
Declaration
[JsonProperty("totalSize")]
public virtual int? TotalSize { get; set; }
Property Value
Type | Description |
---|---|
int? |