Class: Google::Apis::FirebaserulesV1::Result
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::FirebaserulesV1::Result
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebaserules_v1/classes.rb,
 generated/google/apis/firebaserules_v1/representations.rb,
 generated/google/apis/firebaserules_v1/representations.rb
Overview
Possible result values from the function mock invocation.
Instance Attribute Summary collapse
- 
  
    
      #undefined  ⇒ Google::Apis::FirebaserulesV1::Empty 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. 
- 
  
    
      #value  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The result is an actual value. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Result 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Result. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Result
Returns a new instance of Result
| 382 383 384 | # File 'generated/google/apis/firebaserules_v1/classes.rb', line 382 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#undefined ⇒ Google::Apis::FirebaserulesV1::Empty
A generic empty message that you can re-use to avoid defining duplicated
empty messages in your APIs. A typical example is to use it as the request
or the response type of an API method. For instance:
service Foo 
rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
The JSON representation for Empty is empty JSON object ```.
Corresponds to the JSON propertyundefined`
| 374 375 376 | # File 'generated/google/apis/firebaserules_v1/classes.rb', line 374 def undefined @undefined end | 
#value ⇒ Object
The result is an actual value. The type of the value must match that
of the type declared by the service.
Corresponds to the JSON property value
| 380 381 382 | # File 'generated/google/apis/firebaserules_v1/classes.rb', line 380 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 387 388 389 390 | # File 'generated/google/apis/firebaserules_v1/classes.rb', line 387 def update!(**args) @undefined = args[:undefined] if args.key?(:undefined) @value = args[:value] if args.key?(:value) end |