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

from dmObject import DmObject

class UserExperimentRole(DmObject):

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

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