Change file size from int to int64

Signed-off-by: Yannis Varni <yannis@edinomis.fr>
This commit is contained in:
yvarni
2025-09-26 09:41:19 +02:00
committed by Sacha Al Himdani
parent c975ebce88
commit 0f8135482e
11 changed files with 17 additions and 12 deletions

View File

@@ -2046,7 +2046,7 @@ type VendorBusinessAssociateAgreement struct {
ValidUntil *time.Time `json:"validUntil,omitempty"`
FileName string `json:"fileName"`
FileURL string `json:"fileUrl"`
FileSize int `json:"fileSize"`
FileSize int64 `json:"fileSize"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
@@ -2061,7 +2061,7 @@ type VendorComplianceReport struct {
ValidUntil *time.Time `json:"validUntil,omitempty"`
ReportName string `json:"reportName"`
FileURL string `json:"fileUrl"`
FileSize int `json:"fileSize"`
FileSize int64 `json:"fileSize"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
@@ -2110,7 +2110,7 @@ type VendorDataPrivacyAgreement struct {
ValidUntil *time.Time `json:"validUntil,omitempty"`
FileName string `json:"fileName"`
FileURL string `json:"fileUrl"`
FileSize int `json:"fileSize"`
FileSize int64 `json:"fileSize"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}