Bug fixes, clean up, stuff
This commit is contained in:
@@ -61,6 +61,15 @@ class Hosted_File_Base(BaseModel):
|
||||
created_on: Optional[datetime.datetime] = None
|
||||
updated_on: Optional[datetime.datetime] = None
|
||||
|
||||
# Including convenience data
|
||||
# This is only for convenience. Probably going to keep unless it causes a problem.
|
||||
hosted_file_found_check: Optional[bool] = Field(
|
||||
alias = 'found_check'
|
||||
)
|
||||
hosted_file_size_check: Optional[int] = Field( # File size in bytes
|
||||
alias = 'size_check'
|
||||
)
|
||||
|
||||
# Including other related objects
|
||||
hosted_file_link_list: Optional[list] # Hosted_File_Base()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user