Class: Google::Apis::AdminDatatransferV1::ApplicationsListResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/admin_datatransfer_v1/classes.rb,
generated/google/apis/admin_datatransfer_v1/representations.rb,
generated/google/apis/admin_datatransfer_v1/representations.rb

Overview

Template for a collection of Applications.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApplicationsListResponse

Returns a new instance of ApplicationsListResponse.



153
154
155
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 153

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#applicationsArray<Google::Apis::AdminDatatransferV1::Application>

List of applications that support data transfer and are also installed for the customer. Corresponds to the JSON property applications



136
137
138
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 136

def applications
  @applications
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


141
142
143
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 141

def etag
  @etag
end

#kindString

Identifies the resource as a collection of Applications. Corresponds to the JSON property kind

Returns:

  • (String)


146
147
148
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 146

def kind
  @kind
end

#next_page_tokenString

Continuation token which will be used to specify next page in list API. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


151
152
153
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 151

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



158
159
160
161
162
163
# File 'generated/google/apis/admin_datatransfer_v1/classes.rb', line 158

def update!(**args)
  @applications = args[:applications] if args.key?(:applications)
  @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