ramp_database.model
.WorkflowElementType¶
-
class
ramp_database.model.
WorkflowElementType
(**kwargs)¶ WorkflowElementType table.
- Attributes
- idint
The ID of the table row.
- namestr
The name of the workflow element type.
- type_idint
The ID of the submission file type.
- type
ramp_database.model.SubmissionFileType
The submission file type instance.
- workflowslist of
ramp_database.model.WorkflowElement
A back-reference to the workflows linked with the workflow element.
-
__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.