class Google::Apis::AndroidpublisherV2::Price

Attributes

currency[RW]

3 letter Currency code, as defined by ISO 4217. Corresponds to the JSON property `currency` @return [String]

price_micros[RW]

The price in millionths of the currency base unit represented as a string. Corresponds to the JSON property `priceMicros` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/androidpublisher_v2/classes.rb, line 1078
def update!(**args)
  @currency = args[:currency] if args.key?(:currency)
  @price_micros = args[:price_micros] if args.key?(:price_micros)
end