2023-10-24 17:42:39 -04:00
|
|
|
package apiresponse
|
|
|
|
|
2023-11-20 15:26:11 -05:00
|
|
|
type V1BucketsGET struct {
|
2024-08-21 13:39:03 -04:00
|
|
|
APIResponse
|
2023-10-24 17:42:39 -04:00
|
|
|
Data struct {
|
|
|
|
Buckets map[string]string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-20 15:33:07 -05:00
|
|
|
type V1BucketGET struct {
|
2024-08-21 13:39:03 -04:00
|
|
|
APIResponse
|
2023-10-24 17:42:39 -04:00
|
|
|
Data struct {
|
|
|
|
Keys []string
|
|
|
|
}
|
|
|
|
}
|