Package CIM15 :: Package IEC61968 :: Package PaymentMetering :: Module LineDetail' :: Class LineDetail
[hide private]
[frames] | no frames]

Class LineDetail

object --+
         |
        LineDetail

Details on an amount line, with rounding, date and note.Details on an amount line, with rounding, date and note.

Instance Methods [hide private]
 
__init__(self, amount=0.0, rounding=0.0, dateTime='', note='')
Initialises a new 'LineDetail' instance.

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

Class Variables [hide private]
  _attr_types = {'amount': <type 'float'>, 'dateTime': <type 'st...
  _attrs = ['amount', 'rounding', 'dateTime', 'note']
  _defaults = {'amount': 0.0, 'dateTime': '', 'note': '', 'round...
  _enums = {}
  _many_refs = []
  _refs = []
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, amount=0.0, rounding=0.0, dateTime='', note='')
(Constructor)

 

Initialises a new 'LineDetail' instance.

Parameters:
  • amount - Amount for this line item.
  • rounding - Totalised monetary value of all errors due to process rounding or truncating that is not reflected in 'amount'.
  • dateTime - Date and time when this line was created in the application process.
  • note - Free format note relevant to this line.
Overrides: object.__init__

Class Variable Details [hide private]

_attr_types

Value:
{'amount': <type 'float'>,
 'dateTime': <type 'str'>,
 'note': <type 'str'>,
 'rounding': <type 'float'>}

_defaults

Value:
{'amount': 0.0, 'dateTime': '', 'note': '', 'rounding': 0.0}