class Google::Apis::ServiceusageV1beta1::ListServicesResponse
Response message for the `ListServices` method.
Attributes
next_page_token[RW]
Token that can be passed to `ListServices` to resume a paginated query. Corresponds to the JSON property `nextPageToken` @return [String]
services[RW]
The available services for the requested project. Corresponds to the JSON property `services` @return [Array<Google::Apis::ServiceusageV1beta1::Service>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 2610 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/serviceusage_v1beta1/classes.rb, line 2615 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end