ramp_database.model
.SubmissionFileTypeExtension¶
-
class
ramp_database.model.
SubmissionFileTypeExtension
(**kwargs)¶ SubmissionFileTypeExtension table.
This a many-to-many relationship between the SubmissionFileType and Extension.
- Attributes
- idint
The ID of the table row.
- type_idint
The ID of the submission file type.
- type
ramp_database.model.SubmissionFileType
The submission file type instance.
- extension_idint
The ID of the extension.
- extension
ramp_database.model.Extension
The file extension instance.
- submission_fileslist of
ramp_database.model.SubmissionFileTypeExtension
A back-reference to the submission files related to the type extension.
-
__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.