Class: Google::Apis::AndroidenterpriseV1::ApprovalUrlInfo
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::ApprovalUrlInfo
- 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
Information on an approval URL.
Instance Attribute Summary collapse
-
#approval_url ⇒ String
A URL that displays a product's permissions and that can also be used to approve the product with the Products.approve call.
-
#kind ⇒ String
Identifies what kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApprovalUrlInfo
constructor
A new instance of ApprovalUrlInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ApprovalUrlInfo
Returns a new instance of ApprovalUrlInfo
492 493 494 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 492 def initialize(**args) update!(**args) end |
Instance Attribute Details
#approval_url ⇒ String
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
484 485 486 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 484 def approval_url @approval_url end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#approvalUrlInfo".
Corresponds to the JSON property kind
490 491 492 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 490 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
497 498 499 500 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 497 def update!(**args) @approval_url = args[:approval_url] if args.key?(:approval_url) @kind = args[:kind] if args.key?(:kind) end |