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
object
GoogleCloudDialogflowV2FulfillmentGenericWebService
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
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
bool?

Password

Optional. The password for HTTP Basic authentication.

Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
Type Description
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
IDictionary<string, 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
string

Username

Optional. The user name for HTTP Basic authentication.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX