Class: EVSS::PCIUAddress::StatesResponse
- Inherits:
-
Response
- Object
- Common::Base
- Response
- EVSS::PCIUAddress::StatesResponse
- Defined in:
- lib/evss/pciu_address/states_response.rb
Overview
Model for states returned by PCIU
Constant Summary
Constants included from Common::Client::Concerns::ServiceStatus
Common::Client::Concerns::ServiceStatus::RESPONSE_STATUS
Instance Attribute Summary collapse
-
#countries ⇒ Array[String]
An array of state names.
Attributes inherited from Common::Base
Instance Method Summary collapse
-
#initialize(status, response = nil) ⇒ StatesResponse
constructor
A new instance of StatesResponse.
Methods inherited from Response
#cache?, #metadata, #ok?, #response_status
Methods inherited from Common::Base
#changed, #changed?, #changes, default_sort, filterable_attributes, max_per_page, per_page, sortable_attributes
Constructor Details
#initialize(status, response = nil) ⇒ StatesResponse
Returns a new instance of StatesResponse.
19 20 21 22 |
# File 'lib/evss/pciu_address/states_response.rb', line 19 def initialize(status, response = nil) states = response&.body&.dig('cnp_states') || response&.body&.dig('states') super(status, states:) end |
Instance Attribute Details
#countries ⇒ Array[String]
Returns An array of state names.
16 17 18 19 20 21 22 23 |
# File 'lib/evss/pciu_address/states_response.rb', line 16 class StatesResponse < EVSS::Response attribute :states, Array[String] def initialize(status, response = nil) states = response&.body&.dig('cnp_states') || response&.body&.dig('states') super(status, states:) end end |