Class: Google::Apis::PlayintegrityV1::PcRequestDetails
- Inherits:
-
Object
- Object
- Google::Apis::PlayintegrityV1::PcRequestDetails
- 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 integrity request information.
Instance Attribute Summary collapse
-
#request_hash ⇒ String
Request hash that was provided in the request.
-
#request_package_name ⇒ String
Required.
-
#request_time ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PcRequestDetails
constructor
A new instance of PcRequestDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PcRequestDetails
Returns a new instance of PcRequestDetails.
394 395 396 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 394 def initialize(**args) update!(**args) end |
Instance Attribute Details
#request_hash ⇒ String
Request hash that was provided in the request.
Corresponds to the JSON property requestHash
381 382 383 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 381 def request_hash @request_hash end |
#request_package_name ⇒ String
Required. Application package name this attestation was requested for. Note:
This field makes no guarantees or promises on the caller integrity.
Corresponds to the JSON property requestPackageName
387 388 389 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 387 def request_package_name @request_package_name end |
#request_time ⇒ String
Required. Timestamp, of the integrity application request.
Corresponds to the JSON property requestTime
392 393 394 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 392 def request_time @request_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
399 400 401 402 403 |
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 399 def update!(**args) @request_hash = args[:request_hash] if args.key?(:request_hash) @request_package_name = args[:request_package_name] if args.key?(:request_package_name) @request_time = args[:request_time] if args.key?(:request_time) end |