class Google::Apis::BigquerydatatransferV1::ListTransferLogsResponse

The returned list transfer run messages.

Attributes

next_page_token[RW]

Output only. The next-pagination token. For multiple-page list results, this token can be used as the `GetTransferRunLogRequest.page_token` to request the next page of list results. Corresponds to the JSON property `nextPageToken` @return [String]

transfer_messages[RW]

Output only. The stored pipeline transfer messages. Corresponds to the JSON property `transferMessages` @return [Array<Google::Apis::BigquerydatatransferV1::TransferMessage>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 470
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 475
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @transfer_messages = args[:transfer_messages] if args.key?(:transfer_messages)
end