Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CalculateCoverageResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CalculateCoverageResponse
- 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
-
#agent ⇒ String
Corresponds to the JSON property
agent. -
#intent_coverage ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentCoverage
Corresponds to the JSON property
intentCoverage. -
#route_group_coverage ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage
Corresponds to the JSON property
routeGroupCoverage. -
#transition_coverage ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverage
Corresponds to the JSON property
transitionCoverage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3CalculateCoverageResponse
constructor
A new instance of GoogleCloudDialogflowCxV3CalculateCoverageResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3CalculateCoverageResponse
Returns a new instance of GoogleCloudDialogflowCxV3CalculateCoverageResponse.
941 942 943 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 941 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent ⇒ String
Corresponds to the JSON property agent
924 925 926 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 924 def agent @agent end |
#intent_coverage ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentCoverage
Corresponds to the JSON property intentCoverage
929 930 931 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 929 def intent_coverage @intent_coverage end |
#route_group_coverage ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverage
Corresponds to the JSON property routeGroupCoverage
934 935 936 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 934 def route_group_coverage @route_group_coverage end |
#transition_coverage ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverage
Corresponds to the JSON property transitionCoverage
939 940 941 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 939 def transition_coverage @transition_coverage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
946 947 948 949 950 951 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 946 def update!(**args) @agent = args[:agent] if args.key?(:agent) @intent_coverage = args[:intent_coverage] if args.key?(:intent_coverage) @route_group_coverage = args[:route_group_coverage] if args.key?(:route_group_coverage) @transition_coverage = args[:transition_coverage] if args.key?(:transition_coverage) end |