Ajouter struct tags à routes documents #178
1 changed files with 4 additions and 4 deletions
|
@ -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"`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue