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
| 370 371 372 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 370 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
| 362 363 364 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 362 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
| 368 369 370 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 368 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 375 376 377 378 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 375 def update!(**args) @approval_url = args[:approval_url] if args.key?(:approval_url) @kind = args[:kind] if args.key?(:kind) end |