class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Session

Session carries the debug session id and its creation time.

Attributes

id[RW]

The debug session ID. Corresponds to the JSON property `id` @return [String]

timestamp_ms[RW]

The first transaction creation timestamp in millisecond, recoreded by UAP. Corresponds to the JSON property `timestampMs` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 6540
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @timestamp_ms = args[:timestamp_ms] if args.key?(:timestamp_ms)
end