Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.AnswerRecordsResource.ListRequest

Returns the list of all answer records in the specified project in reverse chronological order.

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

Required. Filters to restrict results to specific answer records. Filter on answer record type. Currently predicates on type is supported, valid values are ARTICLE_ANSWER, FAQ_ANSWER. 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.GoogleCloudDialogflowV2ListAnswerRecordsResponse>.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.GoogleCloudDialogflowV2ListAnswerRecordsResponse>.MethodName

PageSize

Optional. The maximum number of records to return in a single page. The server may return fewer records than this. If unspecified, we use 10. The maximum is 100.

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

PageToken

Optional. The ListAnswerRecordsResponse.next_page_token value returned from a previous list request used to continue listing on the next page.

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

Parent

Required. The project to list all answer records for in reverse chronological order. 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.GoogleCloudDialogflowV2ListAnswerRecordsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top