Class: Google::Apis::PartnersV2::DebugInfo
- Inherits:
-
Object
- Object
- Google::Apis::PartnersV2::DebugInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/partners_v2/classes.rb,
generated/google/apis/partners_v2/representations.rb,
generated/google/apis/partners_v2/representations.rb
Overview
Debug information about this request.
Instance Attribute Summary collapse
-
#server_info ⇒ String
Info about the server that serviced this request.
-
#server_trace_info ⇒ String
Server-side debug stack trace.
-
#service_url ⇒ String
URL of the service that handled this request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DebugInfo
constructor
A new instance of DebugInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DebugInfo
Returns a new instance of DebugInfo
1265 1266 1267 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1265 def initialize(**args) update!(**args) end |
Instance Attribute Details
#server_info ⇒ String
Info about the server that serviced this request.
Corresponds to the JSON property serverInfo
1253 1254 1255 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1253 def server_info @server_info end |
#server_trace_info ⇒ String
Server-side debug stack trace.
Corresponds to the JSON property serverTraceInfo
1258 1259 1260 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1258 def server_trace_info @server_trace_info end |
#service_url ⇒ String
URL of the service that handled this request.
Corresponds to the JSON property serviceUrl
1263 1264 1265 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1263 def service_url @service_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1270 1271 1272 1273 1274 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1270 def update!(**args) @server_info = args[:server_info] if args.key?(:server_info) @server_trace_info = args[:server_trace_info] if args.key?(:server_trace_info) @service_url = args[:service_url] if args.key?(:service_url) end |