class Google::Apis::BooksV1::Series::Series::SeriesSubscriptionReleaseInfo::CurrentReleaseInfo

Attributes

amount_in_micros[RW]

Corresponds to the JSON property `amountInMicros` @return [Float]

currency_code[RW]

Corresponds to the JSON property `currencyCode` @return [String]

release_number[RW]

Corresponds to the JSON property `releaseNumber` @return [String]

release_time[RW]

Corresponds to the JSON property `releaseTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/books_v1/classes.rb, line 2717
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/books_v1/classes.rb, line 2722
def update!(**args)
  @amount_in_micros = args[:amount_in_micros] if args.key?(:amount_in_micros)
  @currency_code = args[:currency_code] if args.key?(:currency_code)
  @release_number = args[:release_number] if args.key?(:release_number)
  @release_time = args[:release_time] if args.key?(:release_time)
end