Class: Google::Apis::ToolresultsV1beta3::StartActivityNotFound
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::StartActivityNotFound
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb 
Overview
User provided intent failed to resolve to an activity.
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
action. - 
  
    
      #uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
uri. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StartActivityNotFound 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of StartActivityNotFound.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ StartActivityNotFound
Returns a new instance of StartActivityNotFound.
      2703 2704 2705  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2703 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#action ⇒ String
Corresponds to the JSON property action
      2696 2697 2698  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2696 def action @action end  | 
  
#uri ⇒ String
Corresponds to the JSON property uri
      2701 2702 2703  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2701 def uri @uri end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2708 2709 2710 2711  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2708 def update!(**args) @action = args[:action] if args.key?(:action) @uri = args[:uri] if args.key?(:uri) end  |