class Google::Apis::CloudtraceV1::ListTracesResponse
The response message for the `ListTraces` method.
Attributes
next_page_token[RW]
If defined, indicates that there are more traces that match the request and that this value should be passed to the next request to continue retrieving additional traces. Corresponds to the JSON property `nextPageToken` @return [String]
traces[RW]
List of trace records as specified by the view parameter. Corresponds to the JSON property `traces` @return [Array<Google::Apis::CloudtraceV1::Trace>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudtrace_v1/classes.rb, line 58 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudtrace_v1/classes.rb, line 63 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @traces = args[:traces] if args.key?(:traces) end