2023-10-24 17:42:39 -04:00
|
|
|
package apiresponse
|
|
|
|
|
2023-12-18 17:39:26 -05:00
|
|
|
type V1DocumentsPOST struct {
|
|
|
|
Response
|
|
|
|
Data struct {
|
|
|
|
Bucket string
|
|
|
|
Documents struct {
|
|
|
|
Key string
|
|
|
|
Size int64
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-20 15:36:27 -05:00
|
|
|
type V1DocumentPOST struct {
|
2023-10-24 17:42:39 -04:00
|
|
|
Response
|
|
|
|
Data struct {
|
|
|
|
Bucket string
|
|
|
|
Key string
|
|
|
|
Size int64
|
|
|
|
}
|
|
|
|
}
|
2023-11-20 16:56:44 -05:00
|
|
|
|
|
|
|
type V1DocumentDELETE struct {
|
|
|
|
Response
|
|
|
|
}
|