Show / Hide Table of Contents

Class ProjectsResource.AgentResource.GetValidationResultRequest

Gets agent validation result. Agent validation is performed during training time and is updated automatically when training is completed.

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

Constructors

GetValidationResultRequest(IClientService, String)

Constructs a new GetValidationResult request.

Declaration
public GetValidationResultRequest(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.GoogleCloudDialogflowV2ValidationResult>.HttpMethod

LanguageCode

Optional. The language for which you want a validation result. If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

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

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.GoogleCloudDialogflowV2ValidationResult>.MethodName

Parent

Required. The project that the agent is associated with. Format: projects/.

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

Methods

InitParameters()

Initializes GetValidationResult parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top