Class: Google::Apis::SecuresourcemanagerV1::ListIssuesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/securesourcemanager_v1/classes.rb,
lib/google/apis/securesourcemanager_v1/representations.rb,
lib/google/apis/securesourcemanager_v1/representations.rb

Overview

The response to list issues.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListIssuesResponse

Returns a new instance of ListIssuesResponse.



1245
1246
1247
# File 'lib/google/apis/securesourcemanager_v1/classes.rb', line 1245

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#issuesArray<Google::Apis::SecuresourcemanagerV1::Issue>

The list of issues. Corresponds to the JSON property issues



1238
1239
1240
# File 'lib/google/apis/securesourcemanager_v1/classes.rb', line 1238

def issues
  @issues
end

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1243
1244
1245
# File 'lib/google/apis/securesourcemanager_v1/classes.rb', line 1243

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1250
1251
1252
1253
# File 'lib/google/apis/securesourcemanager_v1/classes.rb', line 1250

def update!(**args)
  @issues = args[:issues] if args.key?(:issues)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end