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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_datatransfer_v1/classes.rb,
lib/google/apis/admin_datatransfer_v1/representations.rb,
lib/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.



155
156
157
# File 'lib/google/apis/admin_datatransfer_v1/classes.rb', line 155

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

Instance Attribute Details

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

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



138
139
140
# File 'lib/google/apis/admin_datatransfer_v1/classes.rb', line 138

def applications
  @applications
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


143
144
145
# File 'lib/google/apis/admin_datatransfer_v1/classes.rb', line 143

def etag
  @etag
end

#kindString

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

Returns:

  • (String)


148
149
150
# File 'lib/google/apis/admin_datatransfer_v1/classes.rb', line 148

def kind
  @kind
end

#next_page_tokenString

Token to specify the next page in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


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

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



160
161
162
163
164
165
# File 'lib/google/apis/admin_datatransfer_v1/classes.rb', line 160

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