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.
3927 3928 3929 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3927 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
3914 3915 3916 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3914 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
3919 3920 3921 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3919 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
3925 3926 3927 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3925 def @offer_tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3932 3933 3934 3935 3936 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3932 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 |