Show / Hide Table of Contents

Class GoogleCloudDialogflowV2FulfillmentGenericWebService

Represents configuration for a generic web service. Dialogflow supports two mechanisms for authentications: - Basic authentication with username and password. - Authentication with additional authentication headers. More information could be found at: https://cloud.google.com/dialogflow/docs/fulfillment-configure.

Inheritance
System.Object
GoogleCloudDialogflowV2FulfillmentGenericWebService
Implements
IDirectResponseSchema
Inherited Members
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.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2FulfillmentGenericWebService : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IsCloudFunction

Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. is_cloud_function is deprecated. Cloud functions can be configured by its uri as a regular web service now.

Declaration
[JsonProperty("isCloudFunction")]
public virtual bool? IsCloudFunction { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Password

Optional. The password for HTTP Basic authentication.

Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
Type Description
System.String

RequestHeaders

Optional. The HTTP request headers to send together with fulfillment requests.

Declaration
[JsonProperty("requestHeaders")]
public virtual IDictionary<string, string> RequestHeaders { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

Uri

Required. The fulfillment URI for receiving POST requests. It must use https protocol.

Declaration
[JsonProperty("uri")]
public virtual string Uri { get; set; }
Property Value
Type Description
System.String

Username

Optional. The user name for HTTP Basic authentication.

Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top