class Google::Apis::AppsmarketV2::LicenseNotificationList
Attributes
kind[RW]
Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
The token used to continue querying for notifications after the final notification in the current result set. Corresponds to the JSON property `nextPageToken` @return [String]
notifications[RW]
The list of notifications. One or more of: - `provisions`: A new license of the application has been provisioned. - `expiries`: A license of the application has expired. - `deletions`: An application has been deleted from a domain. - `reassignments`: An administrator has assigned or revoked a seat license for the application on the provided domain. Corresponds to the JSON property `notifications` @return [Array<Google::Apis::AppsmarketV2::LicenseNotification>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appsmarket_v2/classes.rb, line 248 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appsmarket_v2/classes.rb, line 253 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @notifications = args[:notifications] if args.key?(:notifications) end