class Google::Apis::AndroidenterpriseV1::AppVersion

This represents a single version of the app.

Attributes

version_code[RW]

Unique increasing identifier for the app version. Corresponds to the JSON property `versionCode` @return [Fixnum]

version_string[RW]

The string used in the Play Store by the app developer to identify the version. The string is not necessarily unique or localized (for example, the string could be “1.4”). Corresponds to the JSON property `versionString` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/androidenterprise_v1/classes.rb, line 176
def update!(**args)
  @version_code = args[:version_code] if args.key?(:version_code)
  @version_string = args[:version_string] if args.key?(:version_string)
end