Class GoogleCloudDialogflowV2beta1FulfillmentGenericWebService
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.
Implements
Inherited Members
Namespace: Google.Apis.Dialogflow.v2beta1.Data
Assembly: Google.Apis.Dialogflow.v2beta1.dll
Syntax
public class GoogleCloudDialogflowV2beta1FulfillmentGenericWebService : 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
The password for HTTP Basic authentication.
Declaration
[JsonProperty("password")]
public virtual string Password { get; set; }
Property Value
Type | Description |
---|---|
string |
RequestHeaders
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
The user name for HTTP Basic authentication.
Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
Type | Description |
---|---|
string |