Class: Google::Apis::OndemandscanningV1::HashProp
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::OndemandscanningV1::HashProp
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb 
Overview
Container message for hash values.
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HashProp 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of HashProp.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ HashProp
Returns a new instance of HashProp.
      1451 1452 1453  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1451 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#type ⇒ String
Required. The type of hash that was performed, e.g. "SHA-256".
Corresponds to the JSON property type
      1443 1444 1445  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1443 def type @type end  | 
  
#value ⇒ String
Required. The hash value.
Corresponds to the JSON property value
NOTE: Values are automatically base64 encoded/decoded in the client library.
      1449 1450 1451  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1449 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1456 1457 1458 1459  | 
    
      # File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1456 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end  |