Class: Google::Apis::AppsmarketV2::Reassignments
- Inherits:
-
Object
- Object
- Google::Apis::AppsmarketV2::Reassignments
- 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) ⇒ Reassignments
constructor
A new instance of Reassignments.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Reassignments
Returns a new instance of Reassignments.
315 316 317 |
# File 'generated/google/apis/appsmarket_v2/classes.rb', line 315 def initialize(**args) update!(**args) end |
Instance Attribute Details
#edition_id ⇒ String
(Deprecated)
Corresponds to the JSON property editionId
298 299 300 |
# File 'generated/google/apis/appsmarket_v2/classes.rb', line 298 def edition_id @edition_id end |
#kind ⇒ String
Corresponds to the JSON property kind
303 304 305 |
# File 'generated/google/apis/appsmarket_v2/classes.rb', line 303 def kind @kind end |
#type ⇒ String
Corresponds to the JSON property type
308 309 310 |
# File 'generated/google/apis/appsmarket_v2/classes.rb', line 308 def type @type end |
#user_id ⇒ String
The email address of the reassigned user.
Corresponds to the JSON property userId
313 314 315 |
# File 'generated/google/apis/appsmarket_v2/classes.rb', line 313 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
320 321 322 323 324 325 |
# File 'generated/google/apis/appsmarket_v2/classes.rb', line 320 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 |