class Google::Apis::AndroidenterpriseV1::ApprovalUrlInfo

Information on an approval URL.

Attributes

approval_url[RW]

A URL that displays a product's permissions and that can also be used to approve the product with the Products.approve call. Corresponds to the JSON property `approvalUrl` @return [String]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ androidenterprise#approvalUrlInfo”. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

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