Source code for centreonapi.webservice.configuration.contact
import centreonapi.webservice.configuration.factory.contactfactory as contactfactory
import centreonapi.webservice.configuration.factory.contactgroupfactory as contactgroupfactory
[docs]class ContactGroup(contactgroupfactory.ObjContactGroup):
def __init__(self, properties):
self.id = properties.get('id')
self.name = properties.get('name')
[docs]class Contact(contactfactory.ObjContact):
def __init__(self, properties):
self.id = properties.get('id')
self.name = properties.get('name')