Package CIM14 :: Package IEC61968 :: Package Common :: Module PostalAddress' :: Class PostalAddress
[hide private]
[frames] | no frames]

Class PostalAddress

      object --+    
               |    
Element'.Element --+
                   |
                  PostalAddress

General purpose postal address information.

Instance Methods [hide private]
 
__init__(self, poBox='', postalCode='', streetDetail=None, townDetail=None, *args, **kw_args)
Initialises a new 'PostalAddress' instance.

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  _attr_types = {'poBox': <type 'str'>, 'postalCode': <type 'str'>}
  _attrs = ['poBox', 'postalCode']
  _defaults = {'poBox': '', 'postalCode': ''}
  _refs = ['streetDetail', 'townDetail']
  streetDetail = None
  townDetail = None

Inherited from Element'.Element (private): _enums, _many_refs

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, poBox='', postalCode='', streetDetail=None, townDetail=None, *args, **kw_args)
(Constructor)

 

Initialises a new 'PostalAddress' instance.

Parameters:
  • poBox - Post office box.
  • postalCode - Postal code for the address.
  • streetDetail - Street detail.
  • townDetail - Town detail.
Overrides: object.__init__