Table of Contents

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

Query string

List query.

NextPageToken byte[]

Next page token from a previous response. Null if the request is for the first page.

Options WorkflowListPaginatedOptions

Options 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

WorkflowListPaginatedOptions

Query

List query.

public string Query { get; init; }

Property Value

string