class Google::Apis::AndroidpublisherV2::ExternallyHostedApkUsesPermission

A permission used by this APK.

Attributes

max_sdk_version[RW]

Optionally, the maximum SDK version for which the permission is required. Corresponds to the JSON property `maxSdkVersion` @return [Fixnum]

name[RW]

The name of the permission requested. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/androidpublisher_v2/classes.rb, line 494
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 499
def update!(**args)
  @max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version)
  @name = args[:name] if args.key?(:name)
end