Show / Hide Table of Contents

Class ProjectsResource.ConversationsResource.ParticipantsResource.ListRequest

Returns the list of all participants in the specified conversation.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>
ProjectsResource.ConversationsResource.ParticipantsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>.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<GoogleCloudDialogflowV2ListParticipantsResponse>, IClientServiceRequest<GoogleCloudDialogflowV2ListParticipantsResponse>, 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

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.GoogleCloudDialogflowV2ListParticipantsResponse>.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.GoogleCloudDialogflowV2ListParticipantsResponse>.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 conversation to list all participants from. Format: projects//locations//conversations/.

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.GoogleCloudDialogflowV2ListParticipantsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top