Class ListWorkflowsPaginatedInput
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
public record ListWorkflowsPaginatedInput : IEquatable<ListWorkflowsPaginatedInput>
- Inheritance
-
ListWorkflowsPaginatedInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
ListWorkflowsPaginatedInput(string, byte[]?, WorkflowListPaginatedOptions?)
public ListWorkflowsPaginatedInput(string Query, byte[]? NextPageToken, WorkflowListPaginatedOptions? Options)
Parameters
QuerystringList query.
NextPageTokenbyte[]Next page token from a previous response. Null if the request is for the first page.
OptionsWorkflowListPaginatedOptionsOptions passed in to list.
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
NextPageToken
Next page token from a previous response. Null if the request is for the first page.
public byte[]? NextPageToken { get; init; }
Property Value
- byte[]
Options
Options passed in to list.
public WorkflowListPaginatedOptions? Options { get; init; }
Property Value
Query
List query.
public string Query { get; init; }