Class: Google::Apis::ContentV2sandbox::OrderMerchantProvidedAnnotation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2sandbox::OrderMerchantProvidedAnnotation
 
 
- 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
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Key for additional merchant provided (as key-value pairs) annotation about the line item.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Value for additional merchant provided (as key-value pairs) annotation about the line item.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrderMerchantProvidedAnnotation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OrderMerchantProvidedAnnotation.
 - 
  
    
      #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) ⇒ OrderMerchantProvidedAnnotation
Returns a new instance of OrderMerchantProvidedAnnotation
      898 899 900  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 898 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#key ⇒ String
Key for additional merchant provided (as key-value pairs) annotation about the
line item.
Corresponds to the JSON property key
      890 891 892  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 890 def key @key end  | 
  
#value ⇒ String
Value for additional merchant provided (as key-value pairs) annotation about
the line item.
Corresponds to the JSON property value
      896 897 898  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 896 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      903 904 905 906  | 
    
      # File 'generated/google/apis/content_v2sandbox/classes.rb', line 903 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end  |