class Google::Apis::PartnersV2::DebugInfo

Debug information about this request.

Attributes

server_info[RW]

Info about the server that serviced this request. Corresponds to the JSON property `serverInfo` @return [String]

server_trace_info[RW]

Server-side debug stack trace. Corresponds to the JSON property `serverTraceInfo` @return [String]

service_url[RW]

URL of the service that handled this request. Corresponds to the JSON property `serviceUrl` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/partners_v2/classes.rb, line 371
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/partners_v2/classes.rb, line 376
def update!(**args)
  @server_info = args[:server_info] if args.key?(:server_info)
  @service_url = args[:service_url] if args.key?(:service_url)
  @server_trace_info = args[:server_trace_info] if args.key?(:server_trace_info)
end