rocketsofawesome/newgistics-ruby

View on GitHub
lib/newgistics/warehouse.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Newgistics
  class Warehouse
    include Newgistics::Model

    attribute :id, String

    attribute :name, String
    attribute :address, String
    attribute :city, String
    attribute :state, String
    attribute :postal_code, String
    attribute :country, String
  end
end