agecem-org/apiresponse/document.go

25 lines
305 B
Go

package apiresponse
type V1DocumentsPOST struct {
Response
Data struct {
Bucket string
Documents struct {
Key string
Size int64
}
}
}
type V1DocumentPOST struct {
Response
Data struct {
Bucket string
Key string
Size int64
}
}
type V1DocumentDELETE struct {
Response
}