Class: Google::Apis::AndroidpublisherV3::OfferDetails
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::OfferDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb
Overview
Offer details information related to a purchase line item.
Instance Attribute Summary collapse
-
#base_plan_id ⇒ String
The base plan ID.
-
#offer_id ⇒ String
The offer ID.
-
#offer_tags ⇒ Array<String>
The latest offer tags associated with the offer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OfferDetails
constructor
A new instance of OfferDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OfferDetails
Returns a new instance of OfferDetails.
2828 2829 2830 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2828 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_plan_id ⇒ String
The base plan ID. Present for all base plan and offers.
Corresponds to the JSON property basePlanId
2815 2816 2817 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2815 def base_plan_id @base_plan_id end |
#offer_id ⇒ String
The offer ID. Only present for discounted offers.
Corresponds to the JSON property offerId
2820 2821 2822 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2820 def offer_id @offer_id end |
#offer_tags ⇒ Array<String>
The latest offer tags associated with the offer. It includes tags inherited
from the base plan.
Corresponds to the JSON property offerTags
2826 2827 2828 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2826 def @offer_tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2833 2834 2835 2836 2837 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2833 def update!(**args) @base_plan_id = args[:base_plan_id] if args.key?(:base_plan_id) @offer_id = args[:offer_id] if args.key?(:offer_id) @offer_tags = args[:offer_tags] if args.key?(:offer_tags) end |