class Google::Apis::StoragetransferV1::ListTransferJobsResponse
Response from ListTransferJobs.
Attributes
next_page_token[RW]
The list next page token. Corresponds to the JSON property `nextPageToken` @return [String]
transfer_jobs[RW]
A list of transfer jobs. Corresponds to the JSON property `transferJobs` @return [Array<Google::Apis::StoragetransferV1::TransferJob>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/storagetransfer_v1/classes.rb, line 441 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/storagetransfer_v1/classes.rb, line 446 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transfer_jobs = args[:transfer_jobs] if args.key?(:transfer_jobs) end