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 returned. Corresponds to the JSON property `traces` @return [Array<Google::Apis::CloudtraceV1::Trace>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/cloudtrace_v1/classes.rb, line 46
def update!(**args)
  @traces = args[:traces] if args.key?(:traces)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end