Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 249 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
userInfo.py 258 B
#!/usr/bin/env python

from dmObject import DmObject

class UserInfo(DmObject):

    DEFAULT_KEY_LIST = [ 'id', 'username', 'firstName', 'lastName', 'middleName', 'email', 'description' ]

    def __init__(self, dict):
        DmObject.__init__(self, dict)