Class: Google::Apis::DataformV1beta1::FetchRepositoryHistoryResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FetchRepositoryHistoryResponse

Returns a new instance of FetchRepositoryHistoryResponse.



1029
1030
1031
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1029

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

Instance Attribute Details

#commitsArray<Google::Apis::DataformV1beta1::CommitLogEntry>

A list of commit logs, ordered by 'git log' default order. Corresponds to the JSON property commits



1021
1022
1023
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1021

def commits
  @commits
end

#next_page_tokenString

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

Returns:

  • (String)


1027
1028
1029
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1027

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1034
1035
1036
1037
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1034

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