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.
27268 27269 27270 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27268 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
27261 27262 27263 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27261 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
27266 27267 27268 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27266 def user_licenses @user_licenses end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27273 27274 27275 27276 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27273 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 |