Class: Google::Apis::CloudidentityV1::ListEndpointAppsResponse

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

Overview

Response message for listing all apps on the device.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListEndpointAppsResponse

Returns a new instance of ListEndpointAppsResponse.



645
646
647
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 645

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

Instance Attribute Details

#endpoint_appsArray<Google::Apis::CloudidentityV1::EndpointApp>

The list of matching EndpointApps found as a result of the request. Corresponds to the JSON property endpointApps



637
638
639
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 637

def endpoint_apps
  @endpoint_apps
end

#next_page_tokenString

Token to retrieve the next page of results. Empty if there are no more results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


643
644
645
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 643

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



650
651
652
653
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 650

def update!(**args)
  @endpoint_apps = args[:endpoint_apps] if args.key?(:endpoint_apps)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end