class Google::Apis::AndroidmanagementV1::SignupUrl

An enterprise signup URL.

Attributes

name[RW]

The name of the resource. Use this value in the signupUrl field when calling enterprises.create to complete the enterprise signup flow. Corresponds to the JSON property `name` @return [String]

url[RW]

A URL where an enterprise admin can register their enterprise. The page can't be rendered in an iframe. Corresponds to the JSON property `url` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidmanagement_v1/classes.rb, line 3505
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @url = args[:url] if args.key?(:url)
end