Class: Google::Apis::AndroidpublisherV2::Season

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Season

Returns a new instance of Season.



1397
1398
1399
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1397

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#endGoogle::Apis::AndroidpublisherV2::MonthDay

Inclusive end date of the recurrence period. Corresponds to the JSON property end



1383
1384
1385
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1383

def end
  @end
end

#prorationsArray<Google::Apis::AndroidpublisherV2::Prorate>

Optionally present list of prorations for the season. Each proration is a one- off discounted entry into a subscription. Each proration contains the first date on which the discount is available and the new pricing information. Corresponds to the JSON property prorations



1390
1391
1392
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1390

def prorations
  @prorations
end

#startGoogle::Apis::AndroidpublisherV2::MonthDay

Inclusive start date of the recurrence period. Corresponds to the JSON property start



1395
1396
1397
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1395

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1402
1403
1404
1405
1406
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1402

def update!(**args)
  @end = args[:end] if args.key?(:end)
  @prorations = args[:prorations] if args.key?(:prorations)
  @start = args[:start] if args.key?(:start)
end