msimonborg/pyr

View on GitHub
lib/pyr/response_objects/state.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module PYR
  # The State is the response object that carries the data for
  # a single US State.
  class State < ResponseObject
    attr_accessor :self, :state_code, :name, :abbr
  end
end