Class: Google::Apis::ContentV2sandbox::Amount
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2sandbox::Amount
 
 
- Defined in:
 - generated/google/apis/content_v2sandbox/classes.rb,
generated/google/apis/content_v2sandbox/representations.rb,
generated/google/apis/content_v2sandbox/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #pretax  ⇒ Google::Apis::ContentV2sandbox::Price 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[required] Value before taxes.
 - 
  
    
      #tax  ⇒ Google::Apis::ContentV2sandbox::Price 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[required] Tax value.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Amount 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Amount.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Amount
Returns a new instance of Amount
      39 40 41  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 39 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#pretax ⇒ Google::Apis::ContentV2sandbox::Price
[required] Value before taxes.
Corresponds to the JSON property pretax
      32 33 34  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 32 def pretax @pretax end  | 
  
#tax ⇒ Google::Apis::ContentV2sandbox::Price
[required] Tax value.
Corresponds to the JSON property tax
      37 38 39  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 37 def tax @tax end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      44 45 46 47  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 44 def update!(**args) @pretax = args[:pretax] if args.key?(:pretax) @tax = args[:tax] if args.key?(:tax) end  |