Class: Google::Apis::AndroidenterpriseV1::SignupInfo
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::SignupInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb
Overview
A resource returned by the GenerateSignupUrl API, which contains the Signup URL and Completion Token.
Instance Attribute Summary collapse
-
#completion_token ⇒ String
An opaque token that will be required, along with the Enterprise Token, for obtaining the enterprise resource from CompleteSignup.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#url ⇒ String
A URL under which the Admin can sign up for an enterprise.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignupInfo
constructor
A new instance of SignupInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignupInfo
Returns a new instance of SignupInfo
2328 2329 2330 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2328 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completion_token ⇒ String
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
2314 2315 2316 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2314 def completion_token @completion_token end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#signupInfo".
Corresponds to the JSON property kind
2320 2321 2322 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2320 def kind @kind end |
#url ⇒ String
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
2326 2327 2328 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2326 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2333 2334 2335 2336 2337 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2333 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 |