Class: Google::Apis::AppsmarketV2::LicenseNotification::Reassignment
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppsmarketV2::LicenseNotification::Reassignment
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appsmarket_v2/classes.rb,
 generated/google/apis/appsmarket_v2/representations.rb,
 generated/google/apis/appsmarket_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #edition_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    (Deprecated) Corresponds to the JSON property editionId.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property kind.
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property type.
- 
  
    
      #user_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email address of the reassigned user. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Reassignment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Reassignment. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Reassignment
Returns a new instance of Reassignment
| 276 277 278 | # File 'generated/google/apis/appsmarket_v2/classes.rb', line 276 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#edition_id ⇒ String
(Deprecated)
Corresponds to the JSON property editionId
| 259 260 261 | # File 'generated/google/apis/appsmarket_v2/classes.rb', line 259 def edition_id @edition_id end | 
#kind ⇒ String
Corresponds to the JSON property kind
| 264 265 266 | # File 'generated/google/apis/appsmarket_v2/classes.rb', line 264 def kind @kind end | 
#type ⇒ String
Corresponds to the JSON property type
| 269 270 271 | # File 'generated/google/apis/appsmarket_v2/classes.rb', line 269 def type @type end | 
#user_id ⇒ String
The email address of the reassigned user.
Corresponds to the JSON property userId
| 274 275 276 | # File 'generated/google/apis/appsmarket_v2/classes.rb', line 274 def user_id @user_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 281 282 283 284 285 286 | # File 'generated/google/apis/appsmarket_v2/classes.rb', line 281 def update!(**args) @edition_id = args[:edition_id] if args.key?(:edition_id) @kind = args[:kind] if args.key?(:kind) @type = args[:type] if args.key?(:type) @user_id = args[:user_id] if args.key?(:user_id) end |