| 22 | }; |
| 23 | |
| 24 | struct BucketContent { |
| 25 | BucketContent() : name(""), size(0) { |
| 26 | } |
| 27 | BucketContent(string name, uint64_t size) { |
| 28 | this->name = name; |
| 29 | this->size = size; |
| 30 | } |
| 31 | ~BucketContent() { |
| 32 | } |
| 33 | |
| 34 | string getName() const { |
| 35 | return this->name; |
| 36 | }; |
| 37 | uint64_t getSize() const { |
| 38 | return this->size; |
| 39 | }; |
| 40 | |
| 41 | string name; |
| 42 | uint64_t size; |
| 43 | }; |
| 44 | |
| 45 | struct ListBucketResult { |
| 46 | string Name; |
no outgoing calls