GetServiceResult.cs 656 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using COSXML.Model.Tag;
  5. using COSXML.Transfer;
  6. using System.IO;
  7. namespace COSXML.Model.Service
  8. {
  9. /// <summary>
  10. /// 获取所有 Bucket 列表返回的结果
  11. /// <see href="https://cloud.tencent.com/document/product/436/8291"/>
  12. /// </summary>
  13. public sealed class GetServiceResult : CosDataResult<ListAllMyBuckets>
  14. {
  15. /// <summary>
  16. /// list all buckets for users
  17. /// <see href="COSXML.Model.Tag.ListAllMyBuckets"/>
  18. /// </summary>
  19. public ListAllMyBuckets listAllMyBuckets {
  20. get {return _data; }
  21. }
  22. }
  23. }