Class: Google::Apis::ServiceuserV1::SearchServicesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServiceuserV1::SearchServicesResponse
 
- 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
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Token that can be passed to ListAvailableServicesto resume a paginated query.
- 
  
    
      #services  ⇒ Array<Google::Apis::ServiceuserV1::PublishedService> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Services available publicly or available to the authenticated caller. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SearchServicesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SearchServicesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchServicesResponse
Returns a new instance of SearchServicesResponse
| 2698 2699 2700 | # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2698 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
Token that can be passed to ListAvailableServices to resume a paginated
query.
Corresponds to the JSON property nextPageToken
| 2691 2692 2693 | # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2691 def next_page_token @next_page_token end | 
#services ⇒ Array<Google::Apis::ServiceuserV1::PublishedService>
Services available publicly or available to the authenticated caller.
Corresponds to the JSON property services
| 2696 2697 2698 | # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2696 def services @services end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2703 2704 2705 2706 | # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2703 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end |