Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListUserLicensesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListUserLicensesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Response message for UserLicenseService.ListUserLicenses.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#user_licenses ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense>
All the customer's UserLicenses.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListUserLicensesResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListUserLicensesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListUserLicensesResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListUserLicensesResponse.
28167 28168 28169 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28167 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
28160 28161 28162 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28160 def next_page_token @next_page_token end |
#user_licenses ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaUserLicense>
All the customer's UserLicenses.
Corresponds to the JSON property userLicenses
28165 28166 28167 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28165 def user_licenses @user_licenses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28172 28173 28174 28175 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28172 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @user_licenses = args[:user_licenses] if args.key?(:user_licenses) end |