class Cb::Models::Company::Address

CbAddress # CbCompany has a collection of these

Attributes

city[RW]
country[RW]
state[RW]
street[RW]
zip[RW]

Public Class Methods

new(args = {}) click to toggle source
# File lib/cb/models/implementations/company.rb, line 131
def initialize(args = {})
  @street                    = args['Street'] || ''
  @city                      = args['City'] || ''
  @state                     = args['State'] || ''
  @country                   = args['Country'] || ''
  @zip                       = args['ZIPCode'] || ''
rescue
end