class Google::Apis::AndroidenterpriseV1::SignupInfo
A resource returned by the GenerateSignupUrl API, which contains the Signup URL and Completion Token.
Attributes
completion_token[RW]
An opaque token that will be required, along with the Enterprise
Token, for obtaining the enterprise resource from CompleteSignup. Corresponds to the JSON property `completionToken` @return [String]
kind[RW]
Deprecated. Corresponds to the JSON property `kind` @return [String]
url[RW]
A URL under which the Admin can sign up for an enterprise. The page pointed to cannot 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/androidenterprise_v1/classes.rb, line 2507 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidenterprise_v1/classes.rb, line 2512 def update!(**args) @completion_token = args[:completion_token] if args.key?(:completion_token) @kind = args[:kind] if args.key?(:kind) @url = args[:url] if args.key?(:url) end