Class: Google::Apis::DeveloperconnectV1::FetchLinkableGitRepositoriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DeveloperconnectV1::FetchLinkableGitRepositoriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/developerconnect_v1/classes.rb,
lib/google/apis/developerconnect_v1/representations.rb,
lib/google/apis/developerconnect_v1/representations.rb
Overview
Response message for FetchLinkableGitRepositories.
Instance Attribute Summary collapse
-
#linkable_git_repositories ⇒ Array<Google::Apis::DeveloperconnectV1::LinkableGitRepository>
The git repositories that can be linked to the connection.
-
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FetchLinkableGitRepositoriesResponse
constructor
A new instance of FetchLinkableGitRepositoriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FetchLinkableGitRepositoriesResponse
Returns a new instance of FetchLinkableGitRepositoriesResponse.
254 255 256 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#linkable_git_repositories ⇒ Array<Google::Apis::DeveloperconnectV1::LinkableGitRepository>
The git repositories that can be linked to the connection.
Corresponds to the JSON property linkableGitRepositories
247 248 249 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 247 def linkable_git_repositories @linkable_git_repositories end |
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
252 253 254 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 252 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
259 260 261 262 |
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 259 def update!(**args) @linkable_git_repositories = args[:linkable_git_repositories] if args.key?(:linkable_git_repositories) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |