class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDebugSessionsResponse
Attributes
next_page_token[RW]
Page token that you can include in a ListDebugSessionsRequest to retrieve the next page. If omitted, no subsequent pages exist. Corresponds to the JSON property `nextPageToken` @return [String]
sessions[RW]
Session info that includes debug session ID and the first transaction creation timestamp. Corresponds to the JSON property `sessions` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Session>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4212 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 4217 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sessions = args[:sessions] if args.key?(:sessions) end