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.



1383
1384
1385
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1383

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



1375
1376
1377
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1375

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)


1381
1382
1383
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1381

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1388
1389
1390
1391
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1388

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