blob: cd00a49588d259480f5a852738ae082e4b7381d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from opendc.models.model import Model
class QueuedExperiment(Model):
JSON_TO_PYTHON_DICT = {
'QueuedExperiment': {
'experimentId': 'experiment_id'
}
}
COLLECTION_NAME = 'queued_experiments'
COLUMNS = ['experiment_id']
COLUMNS_PRIMARY_KEY = ['experiment_id']
|