Class: Google::Apis::DeveloperconnectV1::FetchLinkableGitRepositoriesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FetchLinkableGitRepositoriesResponse

Returns a new instance of FetchLinkableGitRepositoriesResponse.



207
208
209
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 207

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

Instance Attribute Details

#linkable_git_repositoriesArray<Google::Apis::DeveloperconnectV1::LinkableGitRepository>

The git repositories that can be linked to the connection. Corresponds to the JSON property linkableGitRepositories



200
201
202
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 200

def linkable_git_repositories
  @linkable_git_repositories
end

#next_page_tokenString

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

Returns:

  • (String)


205
206
207
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 205

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



212
213
214
215
# File 'lib/google/apis/developerconnect_v1/classes.rb', line 212

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