Class: Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataform_v1beta1/classes.rb,
lib/google/apis/dataform_v1beta1/representations.rb,
lib/google/apis/dataform_v1beta1/representations.rb
Overview
FetchRepositoryHistory response message.
Instance Attribute Summary collapse
-
#commits ⇒ Array<Google::Apis::DataformV1beta1::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.
887 888 889 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 887 def initialize(**args) update!(**args) end |
Instance Attribute Details
#commits ⇒ Array<Google::Apis::DataformV1beta1::CommitLogEntry>
A list of commit logs, ordered by 'git log' default order.
Corresponds to the JSON property commits
879 880 881 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 879 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
885 886 887 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 885 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
892 893 894 895 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 892 def update!(**args) @commits = args[:commits] if args.key?(:commits) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |