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

from dmObject import DmObject

class UserSystemRole(DmObject):

    DEFAULT_KEY_LIST = [ 'userId', 'experimentStationId', 'roleTypeId' ]

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