Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CompareVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CompareVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
The response message for Versions.CompareVersions.
Instance Attribute Summary collapse
-
#base_version_content_json ⇒ String
JSON representation of the base version content.
-
#compare_time ⇒ String
The timestamp when the two version compares.
-
#target_version_content_json ⇒ String
JSON representation of the target version content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1CompareVersionsResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1CompareVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1CompareVersionsResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1CompareVersionsResponse.
4789 4790 4791 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4789 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_version_content_json ⇒ String
JSON representation of the base version content.
Corresponds to the JSON property baseVersionContentJson
4777 4778 4779 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4777 def base_version_content_json @base_version_content_json end |
#compare_time ⇒ String
The timestamp when the two version compares.
Corresponds to the JSON property compareTime
4782 4783 4784 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4782 def compare_time @compare_time end |
#target_version_content_json ⇒ String
JSON representation of the target version content.
Corresponds to the JSON property targetVersionContentJson
4787 4788 4789 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4787 def target_version_content_json @target_version_content_json end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4794 4795 4796 4797 4798 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4794 def update!(**args) @base_version_content_json = args[:base_version_content_json] if args.key?(:base_version_content_json) @compare_time = args[:compare_time] if args.key?(:compare_time) @target_version_content_json = args[:target_version_content_json] if args.key?(:target_version_content_json) end |