summaryrefslogtreecommitdiff
path: root/opendc/models/queued_experiment.py
blob: 1cb52c493fe7c3b94824864b5e50de846c3192cd (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'
        }
    }

    TABLE_NAME = 'queued_experiments'
    COLUMNS = ['experiment_id']
    COLUMNS_PRIMARY_KEY = ['experiment_id']