class Google::Apis::TestingV1::ClientInfoDetail
Key-value pair of detailed information about the client which invoked the test. Examples: `'Version', '1.0'`, `'Release Track', 'BETA'`.
Attributes
key[RW]
Required. The key of detailed client information. Corresponds to the JSON property `key` @return [String]
value[RW]
Required. The value of detailed client information. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 795 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/testing_v1/classes.rb, line 800 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end