Class: Google::Apis::ServiceuserV1::SearchServicesResponse

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

Overview

Response message for SearchServices method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SearchServicesResponse

Returns a new instance of SearchServicesResponse



1803
1804
1805
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1803

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

Instance Attribute Details

#next_page_tokenString

Token that can be passed to ListAvailableServices to resume a paginated query. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1801
1802
1803
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1801

def next_page_token
  @next_page_token
end

#servicesArray<Google::Apis::ServiceuserV1::PublishedService>

Services available publicly or available to the authenticated caller. Corresponds to the JSON property services



1795
1796
1797
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1795

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1808
1809
1810
1811
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1808

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