Class: Dhl::Bcs::V2::Postfiliale

Inherits:
Location
  • Object
show all
Defined in:
lib/dhl/bcs/v2/postfiliale.rb

Constant Summary collapse

ADD_PROPS =
%i(postfilial_number post_number).freeze
PROPERTIES =
Location::PROPERTIES + ADD_PROPS

Instance Method Summary collapse

Methods included from Buildable

included, #initialize

Instance Method Details

#to_soap_hashObject



8
9
10
11
12
13
# File 'lib/dhl/bcs/v2/postfiliale.rb', line 8

def to_soap_hash
  h = {}
  h['postfilialNumber'] = postfilial_number
  h['postNumber'] = post_number
  h.merge(super)
end