ramp_database.model
.SubmissionFileType¶
-
class
ramp_database.model.
SubmissionFileType
(**kwargs)¶ SubmissionFileType table.
- Attributes
- idint
The ID of the table row.
- namestr
The name of the submission file type.
- is_editablebool
Whether or not this type of file is editable on the frontend.
- max_sizeint
The maximum size of this file type.
- workflow_element_typeslist of
ramp_database.model.WorkflowElementType
A back-reference to the workflow element type for this submission file type.
-
__init__
(**kwargs)¶ A simple constructor that allows initialization from kwargs.
Sets attributes on the constructed instance using the names and values in
kwargs
.Only keys that are present as attributes of the instance’s class are allowed. These could be, for example, any mapped columns or relationships.