Class: Google::Apis::PlayintegrityV1::PcRequestDetails

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 integrity request information.

Instance Attribute Summary collapse

Instance Method Summary collapse

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_hashString

Request hash that was provided in the request. Corresponds to the JSON property requestHash

Returns:

  • (String)


381
382
383
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 381

def request_hash
  @request_hash
end

#request_package_nameString

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

Returns:

  • (String)


387
388
389
# File 'lib/google/apis/playintegrity_v1/classes.rb', line 387

def request_package_name
  @request_package_name
end

#request_timeString

Required. Timestamp, of the integrity application request. Corresponds to the JSON property requestTime

Returns:

  • (String)


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