Class: Google::Apis::DataformV1::FetchRepositoryHistoryResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1::FetchRepositoryHistoryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1/classes.rb,
lib/google/apis/dataform_v1/representations.rb,
lib/google/apis/dataform_v1/representations.rb
Overview
FetchRepositoryHistory response message.
Instance Attribute Summary collapse
-
#commits ⇒ Array<Google::Apis::DataformV1::CommitLogEntry>
A list of commit logs, ordered by 'git log' default order.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FetchRepositoryHistoryResponse
constructor
A new instance of FetchRepositoryHistoryResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FetchRepositoryHistoryResponse
Returns a new instance of FetchRepositoryHistoryResponse.
1356 1357 1358 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 1356 def initialize(**args) update!(**args) end |
Instance Attribute Details
#commits ⇒ Array<Google::Apis::DataformV1::CommitLogEntry>
A list of commit logs, ordered by 'git log' default order.
Corresponds to the JSON property commits
1348 1349 1350 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 1348 def commits @commits end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1354 1355 1356 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 1354 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1361 1362 1363 1364 |
# File 'lib/google/apis/dataform_v1/classes.rb', line 1361 def update!(**args) @commits = args[:commits] if args.key?(:commits) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |