2023-10-24 17:42:39 -04:00
|
|
|
package apiresponse
|
|
|
|
|
2023-12-19 19:37:36 -05:00
|
|
|
type DataDocument struct {
|
|
|
|
Key string
|
|
|
|
Size int64
|
|
|
|
}
|
|
|
|
|
2023-12-18 17:39:26 -05:00
|
|
|
type V1DocumentsPOST struct {
|
|
|
|
Response
|
|
|
|
Data struct {
|
|
|
|
Bucket string
|
2023-12-19 19:37:36 -05:00
|
|
|
Documents []DataDocument
|
2023-12-18 17:39:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-19 19:36:58 -05:00
|
|
|
// Deprecated: Use V1DocumentsPOST instead
|
2023-11-20 15:36:27 -05:00
|
|
|
type V1DocumentPOST struct {
|
2023-10-24 17:42:39 -04:00
|
|
|
Response
|
|
|
|
Data struct {
|
|
|
|
Bucket string
|
2023-12-19 19:37:36 -05:00
|
|
|
DataDocument
|
2023-10-24 17:42:39 -04:00
|
|
|
}
|
|
|
|
}
|
2023-11-20 16:56:44 -05:00
|
|
|
|
|
|
|
type V1DocumentDELETE struct {
|
|
|
|
Response
|
|
|
|
}
|
2024-01-23 16:50:03 -05:00
|
|
|
|
|
|
|
type V1DocumentKeyPUT struct {
|
|
|
|
Response
|
|
|
|
Data struct {
|
|
|
|
Bucket string
|
|
|
|
Key string
|
|
|
|
}
|
|
|
|
}
|