Class: Google::Apis::PlayintegrityV1::WriteDeviceRecallRequest
- Inherits:
-
Object
- Object
- Google::Apis::PlayintegrityV1::WriteDeviceRecallRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/playintegrity_v1/classes.rb,
lib/google/apis/playintegrity_v1/representations.rb,
lib/google/apis/playintegrity_v1/representations.rb
Overview
Request to write device recall bits.
Instance Attribute Summary collapse
-
#integrity_token ⇒ String
Required.
-
#new_values ⇒ Google::Apis::PlayintegrityV1::Values
Contains the recall bits values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WriteDeviceRecallRequest
constructor
A new instance of WriteDeviceRecallRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WriteDeviceRecallRequest
Returns a new instance of WriteDeviceRecallRequest.
488 489 490 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 488 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integrity_token ⇒ String
Required. Integrity token obtained from calling Play Integrity API.
Corresponds to the JSON property integrityToken
481 482 483 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 481 def integrity_token @integrity_token end |
#new_values ⇒ Google::Apis::PlayintegrityV1::Values
Contains the recall bits values.
Corresponds to the JSON property newValues
486 487 488 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 486 def new_values @new_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
493 494 495 496 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 493 def update!(**args) @integrity_token = args[:integrity_token] if args.key?(:integrity_token) @new_values = args[:new_values] if args.key?(:new_values) end |