Add DriveFile usageHint field to rust model as well

This commit is contained in:
yumeko 2024-04-19 07:03:09 +03:00
parent c0f93de94b
commit 4aeb0d95cc
No known key found for this signature in database
GPG Key ID: 31A48AD2758B1B53
1 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,8 @@ pub struct Model {
pub request_headers: Option<Json>,
#[sea_orm(column_name = "requestIp")]
pub request_ip: Option<String>,
#[sea_orm(column_name = "usageHint")]
pub usage_hint: Option<String>,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]