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.



1356
1357
1358
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1356

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



1348
1349
1350
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1348

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)


1354
1355
1356
# File 'lib/google/apis/dataform_v1beta1/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_v1beta1/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