Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb

Overview

Represents the contents of the original request that was passed to the [Streaming]DetectIntent call.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest

Returns a new instance of GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest



3542
3543
3544
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3542

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#payloadHash<String,Object>

Optional. This field is set to the value of QueryParameters.payload field passed in the request. Corresponds to the JSON property payload

Returns:

  • (Hash<String,Object>)


3533
3534
3535
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3533

def payload
  @payload
end

#sourceString

The source of this request, e.g., google, facebook, slack. It is set by Dialogflow-owned servers. Possible values of this field correspond to Intent.Message.Platform. Corresponds to the JSON property source

Returns:

  • (String)


3540
3541
3542
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3540

def source
  @source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3547
3548
3549
3550
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 3547

def update!(**args)
  @payload = args[:payload] if args.key?(:payload)
  @source = args[:source] if args.key?(:source)
end