fix!: ajouter struct tags à routes documents

BREAKING: ajouter struct tags pour documents request
This commit is contained in:
Victor Lacasse-Beaudoin 2023-11-20 17:20:26 -05:00
parent ba4558bb6d
commit 17fb5f16d1

View file

@ -16,10 +16,10 @@ var _ request.Requester[apiresponse.V1DocumentPOST] = V1DocumentPOST{}
type V1DocumentPOST struct { type V1DocumentPOST struct {
Data struct { Data struct {
Document *multipart.FileHeader Document *multipart.FileHeader `document`
} }
Params struct { Params struct {
Bucket string Bucket string `json:"bucket"`
} }
} }
@ -63,8 +63,8 @@ var _ request.Requester[apiresponse.V1DocumentDELETE] = V1DocumentDELETE{}
type V1DocumentDELETE struct { type V1DocumentDELETE struct {
Params struct { Params struct {
Bucket string Bucket string `json:"bucket"`
Document string Document string `json:"document"`
} }
} }