Printfection/printfection-ruby

View on GitHub
lib/printfection/address.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Printfection
  class Address < Resource
    property :name
    property :address
    property :address2
    property :company
    property :city
    property :state
    property :zip_code, from: :zip
    property :country
    property :email
    property :phone
  end
end