Class: Google::Apis::AgentregistryV1alpha::SearchSkillsResponse

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

Overview

Response listing searched Skills.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchSkillsResponse

Returns a new instance of SearchSkillsResponse.



1441
1442
1443
# File 'lib/google/apis/agentregistry_v1alpha/classes.rb', line 1441

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

Instance Attribute Details

#next_page_tokenString

Query page offset continuation token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1434
1435
1436
# File 'lib/google/apis/agentregistry_v1alpha/classes.rb', line 1434

def next_page_token
  @next_page_token
end

#skillsArray<Google::Apis::AgentregistryV1alpha::Skill>

Matched Skills list. Corresponds to the JSON property skills



1439
1440
1441
# File 'lib/google/apis/agentregistry_v1alpha/classes.rb', line 1439

def skills
  @skills
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1446
1447
1448
1449
# File 'lib/google/apis/agentregistry_v1alpha/classes.rb', line 1446

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