Class: Google::Apis::ContentV2::OrderMerchantProvidedAnnotation

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OrderMerchantProvidedAnnotation

Returns a new instance of OrderMerchantProvidedAnnotation.



4924
4925
4926
# File 'generated/google/apis/content_v2/classes.rb', line 4924

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

Key for additional merchant provided (as key-value pairs) annotation about the line item. Corresponds to the JSON property key

Returns:

  • (String)


4916
4917
4918
# File 'generated/google/apis/content_v2/classes.rb', line 4916

def key
  @key
end

#valueString

Value for additional merchant provided (as key-value pairs) annotation about the line item. Corresponds to the JSON property value

Returns:

  • (String)


4922
4923
4924
# File 'generated/google/apis/content_v2/classes.rb', line 4922

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4929
4930
4931
4932
# File 'generated/google/apis/content_v2/classes.rb', line 4929

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end