Class: Google::Apis::ContentV2::Service
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::Service
- 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
-
#active ⇒ Boolean
(also: #active?)
A boolean exposing the active status of the shipping service.
-
#currency ⇒ String
The CLDR code of the currency to which this service applies.
-
#delivery_country ⇒ String
The CLDR territory code of the country to which the service applies.
-
#delivery_time ⇒ Google::Apis::ContentV2::DeliveryTime
Time spent in various aspects from order to the delivery of the product.
-
#minimum_order_value ⇒ Google::Apis::ContentV2::Price
Minimum order value for this service.
-
#name ⇒ String
Free-form name of the service.
-
#rate_groups ⇒ Array<Google::Apis::ContentV2::RateGroup>
Shipping rate group definitions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Service
constructor
A new instance of Service.
-
#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) ⇒ Service
Returns a new instance of Service
5991 5992 5993 |
# File 'generated/google/apis/content_v2/classes.rb', line 5991 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active ⇒ Boolean Also known as: active?
A boolean exposing the active status of the shipping service. Required.
Corresponds to the JSON property active
5952 5953 5954 |
# File 'generated/google/apis/content_v2/classes.rb', line 5952 def active @active end |
#currency ⇒ String
The CLDR code of the currency to which this service applies. Must match that
of the prices in rate groups.
Corresponds to the JSON property currency
5959 5960 5961 |
# File 'generated/google/apis/content_v2/classes.rb', line 5959 def currency @currency end |
#delivery_country ⇒ String
The CLDR territory code of the country to which the service applies. Required.
Corresponds to the JSON property deliveryCountry
5964 5965 5966 |
# File 'generated/google/apis/content_v2/classes.rb', line 5964 def delivery_country @delivery_country end |
#delivery_time ⇒ Google::Apis::ContentV2::DeliveryTime
Time spent in various aspects from order to the delivery of the product.
Required.
Corresponds to the JSON property deliveryTime
5970 5971 5972 |
# File 'generated/google/apis/content_v2/classes.rb', line 5970 def delivery_time @delivery_time end |
#minimum_order_value ⇒ Google::Apis::ContentV2::Price
Minimum order value for this service. If set, indicates that customers will
have to spend at least this amount. All prices within a service must have the
same currency.
Corresponds to the JSON property minimumOrderValue
5977 5978 5979 |
# File 'generated/google/apis/content_v2/classes.rb', line 5977 def minimum_order_value @minimum_order_value end |
#name ⇒ String
Free-form name of the service. Must be unique within target account. Required.
Corresponds to the JSON property name
5982 5983 5984 |
# File 'generated/google/apis/content_v2/classes.rb', line 5982 def name @name end |
#rate_groups ⇒ Array<Google::Apis::ContentV2::RateGroup>
Shipping rate group definitions. Only the last one is allowed to have an empty
applicableShippingLabels, which means "everything else". The other
applicableShippingLabels must not overlap.
Corresponds to the JSON property rateGroups
5989 5990 5991 |
# File 'generated/google/apis/content_v2/classes.rb', line 5989 def rate_groups @rate_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5996 5997 5998 5999 6000 6001 6002 6003 6004 |
# File 'generated/google/apis/content_v2/classes.rb', line 5996 def update!(**args) @active = args[:active] if args.key?(:active) @currency = args[:currency] if args.key?(:currency) @delivery_country = args[:delivery_country] if args.key?(:delivery_country) @delivery_time = args[:delivery_time] if args.key?(:delivery_time) @minimum_order_value = args[:minimum_order_value] if args.key?(:minimum_order_value) @name = args[:name] if args.key?(:name) @rate_groups = args[:rate_groups] if args.key?(:rate_groups) end |