class Google::Apis::AdminDatatransferV1::DataTransfersListResponse
Template for a collection of DataTransfer resources.
Attributes
data_transfers[RW]
List of data transfer requests. Corresponds to the JSON property `dataTransfers` @return [Array<Google::Apis::AdminDatatransferV1::DataTransfer>]
etag[RW]
ETag of the resource. Corresponds to the JSON property `etag` @return [String]
kind[RW]
Identifies the resource as a collection of data transfer requests. Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
Continuation token which will be used to specify next page in list API. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_datatransfer_v1/classes.rb, line 253 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/admin_datatransfer_v1/classes.rb, line 258 def update!(**args) @data_transfers = args[:data_transfers] if args.key?(:data_transfers) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end