class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CompareVersionsResponse
The response message for Versions.CompareVersions.
Attributes
base_version_content_json[RW]
JSON representation of the base version content. Corresponds to the JSON property `baseVersionContentJson` @return [String]
compare_time[RW]
The timestamp when the two version compares. Corresponds to the JSON property `compareTime` @return [String]
target_version_content_json[RW]
JSON representation of the target version content. Corresponds to the JSON property `targetVersionContentJson` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 475 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 480 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