Bumping version for release.
[PyCIM.git] / CIM14 / IEC61968 / Customers / __init__.py
blobeb2995d2986c99330a674b01b76573b435a18dad
1 # Copyright (C) 2010 Richard Lincoln
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA, USA
17 """This package contains the core information classes that support customer billing applications.
18 """
20 nsPrefix = "cimCustomers"
21 nsURI = "http://iec.ch/TC57/2009/CIM-schema-cim14#Customers"
23 from CIM14.IEC61968.Customers.Customer import Customer
24 from CIM14.IEC61968.Customers.CustomerAccount import CustomerAccount
25 from CIM14.IEC61968.Customers.ServiceCategory import ServiceCategory
26 from CIM14.IEC61968.Customers.PricingStructure import PricingStructure
27 from CIM14.IEC61968.Customers.ServiceLocation import ServiceLocation
28 from CIM14.IEC61968.Customers.CustomerAgreement import CustomerAgreement
29 from CIM14.IEC61968.Customers.Tariff import Tariff
31 class RevenueKind(str):
32 """Accounting classification of the type of revenue collected for the CustomerAgreement, typically used to break down accounts for revenue accounting.
33 Values are: industrial, streetLight, other, nonResidential, irrigation, residential, commercial
34 """
35 pass
37 class CustomerKind(str):
38 """Kind of customer.
39 Values are: residentialAndCommercial, residentialStreetlightOthers, residentialAndStreetlight, pumpingLoad, energyServiceSupplier, windMachine, residential, internalUse, residentialFarmService, other, energyServiceScheduler, commercialIndustrial
40 """
41 pass
43 class ServiceKind(str):
44 """Kind of service.
45 Values are: water, time, electricity, heat, rates, gas, internet, refuse, other, tvLicence, sewerage
46 """
47 pass