18 lines
225 B
Go
18 lines
225 B
Go
package apiresponse
|
|
|
|
type V1DocumentPOST struct {
|
|
Response
|
|
Data struct {
|
|
Bucket string
|
|
Key string
|
|
Size int64
|
|
}
|
|
}
|
|
|
|
type V1DocumentDELETE struct {
|
|
Response
|
|
Data struct {
|
|
Bucket string
|
|
Document string
|
|
}
|
|
}
|