class Google::Apis::TestingV1::ClientInfo

Information about the client which invoked the test.

Attributes

client_info_details[RW]

The list of detailed information about client. Corresponds to the JSON property `clientInfoDetails` @return [Array<Google::Apis::TestingV1::ClientInfoDetail>]

name[RW]

Required. Client name, such as gcloud. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 769
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 774
def update!(**args)
  @client_info_details = args[:client_info_details] if args.key?(:client_info_details)
  @name = args[:name] if args.key?(:name)
end