Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.ConversationsResource.ListRequest

Returns the list of all conversations in the specified project.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>
ProjectsResource.LocationsResource.ConversationsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class ListRequest : DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>, IClientServiceRequest<GoogleCloudDialogflowV2ListConversationsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

Filter

A filter expression that filters conversations listed in the response. In general, the expression must specify the field name, a comparison operator, and the value to use for filtering: - The value must be a string, a number, or a boolean. - The comparison operator must be either =,!=, &amp;gt;, or &amp;lt;. - To filter on multiple expressions, separate the expressions with AND or OR (omitting both implies AND). - For clarity, expressions can be enclosed in parentheses. Only lifecycle_state can be filtered on in this way. For example, the following expression only returns COMPLETED conversations: lifecycle_state = &quot;COMPLETED&quot; For more information about filtering, see API Filtering.

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListConversationsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListConversationsResponse>.MethodName

PageSize

Optional. The maximum number of items to return in a single page. By default 100 and at most 1000.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

Optional. The next_page_token value returned from a previous list request.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. The project from which to list all conversation. Format: projects//locations/.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListConversationsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Dialogflow.v2.DialogflowBaseServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListConversationsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top