Class: Google::Apis::ContentV2::OrderLegacyPromotion
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrderLegacyPromotion
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#benefits ⇒ Array<Google::Apis::ContentV2::OrderLegacyPromotionBenefit>
Corresponds to the JSON property
benefits
. -
#effective_dates ⇒ String
The date and time frame when the promotion is active and ready for validation review.
-
#generic_redemption_code ⇒ String
Optional.
-
#id ⇒ String
The unique ID of the promotion.
-
#long_title ⇒ String
The full title of the promotion.
-
#product_applicability ⇒ String
Whether the promotion is applicable to all products or only specific products.
-
#redemption_channel ⇒ String
Indicates that the promotion is valid online.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderLegacyPromotion
constructor
A new instance of OrderLegacyPromotion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrderLegacyPromotion
Returns a new instance of OrderLegacyPromotion.
4255 4256 4257 |
# File 'lib/google/apis/content_v2/classes.rb', line 4255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#benefits ⇒ Array<Google::Apis::ContentV2::OrderLegacyPromotionBenefit>
Corresponds to the JSON property benefits
4214 4215 4216 |
# File 'lib/google/apis/content_v2/classes.rb', line 4214 def benefits @benefits end |
#effective_dates ⇒ String
The date and time frame when the promotion is active and ready for validation
review. Note that the promotion live time may be delayed for a few hours due
to the validation review. Start date and end date are separated by a forward
slash (/). The start date is specified by the format (YYYY-MM-DD), followed by
the letter ?T?, the time of the day when the sale starts (in Greenwich Mean
Time, GMT), followed by an expression of the time zone for the sale. The end
date is in the same format.
Corresponds to the JSON property effectiveDates
4225 4226 4227 |
# File 'lib/google/apis/content_v2/classes.rb', line 4225 def effective_dates @effective_dates end |
#generic_redemption_code ⇒ String
Optional. The text code that corresponds to the promotion when applied on the
retailer?s website.
Corresponds to the JSON property genericRedemptionCode
4231 4232 4233 |
# File 'lib/google/apis/content_v2/classes.rb', line 4231 def generic_redemption_code @generic_redemption_code end |
#id ⇒ String
The unique ID of the promotion.
Corresponds to the JSON property id
4236 4237 4238 |
# File 'lib/google/apis/content_v2/classes.rb', line 4236 def id @id end |
#long_title ⇒ String
The full title of the promotion.
Corresponds to the JSON property longTitle
4241 4242 4243 |
# File 'lib/google/apis/content_v2/classes.rb', line 4241 def long_title @long_title end |
#product_applicability ⇒ String
Whether the promotion is applicable to all products or only specific products.
Acceptable values are: - "allProducts
" - "specificProducts
"
Corresponds to the JSON property productApplicability
4247 4248 4249 |
# File 'lib/google/apis/content_v2/classes.rb', line 4247 def product_applicability @product_applicability end |
#redemption_channel ⇒ String
Indicates that the promotion is valid online. Acceptable values are: - "
online
"
Corresponds to the JSON property redemptionChannel
4253 4254 4255 |
# File 'lib/google/apis/content_v2/classes.rb', line 4253 def redemption_channel @redemption_channel end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4260 4261 4262 4263 4264 4265 4266 4267 4268 |
# File 'lib/google/apis/content_v2/classes.rb', line 4260 def update!(**args) @benefits = args[:benefits] if args.key?(:benefits) @effective_dates = args[:effective_dates] if args.key?(:effective_dates) @generic_redemption_code = args[:generic_redemption_code] if args.key?(:generic_redemption_code) @id = args[:id] if args.key?(:id) @long_title = args[:long_title] if args.key?(:long_title) @product_applicability = args[:product_applicability] if args.key?(:product_applicability) @redemption_channel = args[:redemption_channel] if args.key?(:redemption_channel) end |