Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerLifecycleHandler
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerLifecycleHandler
- 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
-
#condition ⇒ String
Corresponds to the JSON property
condition. -
#fulfillment ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment
Corresponds to the JSON property
fulfillment. -
#lifecycle_stage ⇒ String
Corresponds to the JSON property
lifecycleStage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3HandlerLifecycleHandler
constructor
A new instance of GoogleCloudDialogflowCxV3HandlerLifecycleHandler.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3HandlerLifecycleHandler
Returns a new instance of GoogleCloudDialogflowCxV3HandlerLifecycleHandler.
3893 3894 3895 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3893 def initialize(**args) update!(**args) end |
Instance Attribute Details
#condition ⇒ String
Corresponds to the JSON property condition
3881 3882 3883 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3881 def condition @condition end |
#fulfillment ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment
Corresponds to the JSON property fulfillment
3886 3887 3888 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3886 def fulfillment @fulfillment end |
#lifecycle_stage ⇒ String
Corresponds to the JSON property lifecycleStage
3891 3892 3893 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3891 def lifecycle_stage @lifecycle_stage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3898 3899 3900 3901 3902 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3898 def update!(**args) @condition = args[:condition] if args.key?(:condition) @fulfillment = args[:fulfillment] if args.key?(:fulfillment) @lifecycle_stage = args[:lifecycle_stage] if args.key?(:lifecycle_stage) end |