class Google::Apis::ContentV2_1::MinimumOrderValueTableStoreCodeSetWithMov

A list of store code sets sharing the same minimum order value. At least two sets are required and the last one must be empty, which signifies 'MOV for all other stores'. Each store code can only appear once across all the sets. All prices within a service must have the same currency.

Attributes

store_codes[RW]

A list of unique store codes or empty for the catch all. Corresponds to the JSON property `storeCodes` @return [Array<String>]

value[RW]

The minimum order value for the given stores. Corresponds to the JSON property `value` @return [Google::Apis::ContentV2_1::Price]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 5170
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 5175
def update!(**args)
  @store_codes = args[:store_codes] if args.key?(:store_codes)
  @value = args[:value] if args.key?(:value)
end