class Google::Apis::CloudtraceV2::StackFrames

A collection of stack frames, which can be truncated.

Attributes

dropped_frames_count[RW]

The number of stack frames that were dropped because there were too many stack frames. If this value is 0, then no stack frames were dropped. Corresponds to the JSON property `droppedFramesCount` @return [Fixnum]

frame[RW]

Stack frames in this call stack. Corresponds to the JSON property `frame` @return [Array<Google::Apis::CloudtraceV2::StackFrame>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudtrace_v2/classes.rb, line 476
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_v2/classes.rb, line 481
def update!(**args)
  @dropped_frames_count = args[:dropped_frames_count] if args.key?(:dropped_frames_count)
  @frame = args[:frame] if args.key?(:frame)
end