Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CompareVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CompareVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/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) ⇒ GoogleCloudDialogflowCxV3CompareVersionsResponse
constructor
A new instance of GoogleCloudDialogflowCxV3CompareVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3CompareVersionsResponse
Returns a new instance of GoogleCloudDialogflowCxV3CompareVersionsResponse.
1103 1104 1105 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1103 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
1091 1092 1093 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1091 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
1096 1097 1098 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1096 def compare_time @compare_time end |
#target_version_content_json ⇒ String
JSON representation of the target version content.
Corresponds to the JSON property targetVersionContentJson
1101 1102 1103 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1101 def target_version_content_json @target_version_content_json end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1108 1109 1110 1111 1112 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1108 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 |