Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult
- 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
Instance Attribute Summary collapse
-
#name ⇒ String
Corresponds to the JSON property
name. -
#update_time ⇒ String
Corresponds to the JSON property
updateTime. -
#validation_messages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ValidationMessage>
Corresponds to the JSON property
validationMessages.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FlowValidationResult
constructor
A new instance of GoogleCloudDialogflowCxV3FlowValidationResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FlowValidationResult
Returns a new instance of GoogleCloudDialogflowCxV3FlowValidationResult.
3149 3150 3151 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3149 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Corresponds to the JSON property name
3137 3138 3139 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3137 def name @name end |
#update_time ⇒ String
Corresponds to the JSON property updateTime
3142 3143 3144 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3142 def update_time @update_time end |
#validation_messages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ValidationMessage>
Corresponds to the JSON property validationMessages
3147 3148 3149 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3147 def @validation_messages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3154 3155 3156 3157 3158 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3154 def update!(**args) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) @validation_messages = args[:validation_messages] if args.key?(:validation_messages) end |