Class: Google::Apis::PlayintegrityV1::Values

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_firstBoolean Also known as: bit_first?

Required. First recall bit value. Corresponds to the JSON property bitFirst

Returns:

  • (Boolean)


413
414
415
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 413

def bit_first
  @bit_first
end

#bit_secondBoolean Also known as: bit_second?

Required. Second recall bit value. Corresponds to the JSON property bitSecond

Returns:

  • (Boolean)


419
420
421
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 419

def bit_second
  @bit_second
end

#bit_thirdBoolean Also known as: bit_third?

Required. Third recall bit value. Corresponds to the JSON property bitThird

Returns:

  • (Boolean)


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