Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDebugSessionsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDebugSessionsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Page token that you can include in a ListDebugSessionsRequest to retrieve the next page.
 - 
  
    
      #sessions  ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Session> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Session info that includes debug session ID and the first transaction creation timestamp.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1ListDebugSessionsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1ListDebugSessionsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListDebugSessionsResponse
Returns a new instance of GoogleCloudApigeeV1ListDebugSessionsResponse.
      6012 6013 6014  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6012 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
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
      6004 6005 6006  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6004 def next_page_token @next_page_token end  | 
  
#sessions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Session>
Session info that includes debug session ID and the first transaction creation
timestamp.
Corresponds to the JSON property sessions
      6010 6011 6012  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6010 def sessions @sessions end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6017 6018 6019 6020  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 6017 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sessions = args[:sessions] if args.key?(:sessions) end  |