Class: ServiceStack::StringsResponse
- Inherits:
-
Object
- Object
- ServiceStack::StringsResponse
- Includes:
- DTO
- Defined in:
- lib/servicestack/types.rb
Overview
Returned by APIs that return a list of string results.
Instance Attribute Summary collapse
-
#meta ⇒ Object
Returns the value of attribute meta.
-
#response_status ⇒ Object
Returns the value of attribute response_status.
-
#results ⇒ Object
Returns the value of attribute results.
Class Method Summary collapse
Methods included from DTO
#==, included, #initialize, #inspect, #to_hash, #to_json
Instance Attribute Details
#meta ⇒ Object
Returns the value of attribute meta.
89 90 91 |
# File 'lib/servicestack/types.rb', line 89 def @meta end |
#response_status ⇒ Object
Returns the value of attribute response_status.
89 90 91 |
# File 'lib/servicestack/types.rb', line 89 def response_status @response_status end |
#results ⇒ Object
Returns the value of attribute results.
89 90 91 |
# File 'lib/servicestack/types.rb', line 89 def results @results end |
Class Method Details
.properties ⇒ Object
91 92 93 94 95 96 97 |
# File 'lib/servicestack/types.rb', line 91 def self.properties { results: { name: 'results' }, meta: { name: 'meta' }, response_status: { name: 'responseStatus', type: ResponseStatus }, } end |