agecem-org/apiresponse/document.go

27 lines
348 B
Go
Raw Normal View History

package apiresponse
type V1DocumentsPOST struct {
Response
Data struct {
Bucket string
Documents struct {
Key string
Size int64
}
}
}
// Deprecated: Use V1DocumentsPOST instead
type V1DocumentPOST struct {
Response
Data struct {
Bucket string
Key string
Size int64
}
}
2023-11-20 16:56:44 -05:00
type V1DocumentDELETE struct {
Response
}