Class: Google::Apis::PlayintegrityV1::Values
- Inherits:
-
Object
- Object
- Google::Apis::PlayintegrityV1::Values
- 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
Contains the recall bits values.
Instance Attribute Summary collapse
-
#bit_first ⇒ Boolean
(also: #bit_first?)
Required.
-
#bit_second ⇒ Boolean
(also: #bit_second?)
Required.
-
#bit_third ⇒ Boolean
(also: #bit_third?)
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Values
constructor
A new instance of Values.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Values
Returns a new instance of Values.
428 429 430 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 428 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bit_first ⇒ Boolean Also known as: bit_first?
Required. First recall bit value.
Corresponds to the JSON property bitFirst
413 414 415 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 413 def bit_first @bit_first end |
#bit_second ⇒ Boolean Also known as: bit_second?
Required. Second recall bit value.
Corresponds to the JSON property bitSecond
419 420 421 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 419 def bit_second @bit_second end |
#bit_third ⇒ Boolean Also known as: bit_third?
Required. Third recall bit value.
Corresponds to the JSON property bitThird
425 426 427 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 425 def bit_third @bit_third end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
433 434 435 436 437 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 433 def update!(**args) @bit_first = args[:bit_first] if args.key?(:bit_first) @bit_second = args[:bit_second] if args.key?(:bit_second) @bit_third = args[:bit_third] if args.key?(:bit_third) end |