123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Serialization;
- namespace COSXML.Model.Tag
- {
- [XmlRoot("ListPartsResult")]
- public sealed class ListParts
- {
-
-
-
- [XmlElement("Bucket")]
- public string bucket;
-
-
-
- [XmlElement("Encoding-type")]
- public string encodingType;
-
-
-
- [XmlElement("Key")]
- public string key;
-
-
-
- [XmlElement("UploadId")]
- public string uploadId;
-
-
-
- [XmlElement("Owner")]
- public Owner owner;
-
-
-
- [XmlElement("PartNumberMarker")]
- public string partNumberMarker;
-
-
-
-
- [XmlElement("Initiator")]
- public Initiator initiator;
-
-
-
- [XmlElement("StorageClass")]
- public string storageClass;
-
-
-
- [XmlElement("NextPartNumberMarker")]
- public string nextPartNumberMarker;
-
-
-
- [XmlElement("MaxParts")]
- public string maxParts;
-
-
-
- [XmlElement("IsTruncated")]
- public bool isTruncated;
-
-
-
-
- [XmlElement("Part")]
- public List<Part> parts;
- public sealed class Owner
- {
-
- [XmlElement("ID")]
- public string id;
-
- [XmlElement("DisplayName")]
- public string disPlayName;
- }
- public sealed class Initiator
- {
-
-
-
- [XmlElement("ID")]
- public string id;
-
-
-
- [XmlElement("DisplayName")]
- public string disPlayName;
- }
- public sealed class Part
- {
-
-
-
- [XmlElement("PartNumber")]
- public string partNumber;
-
-
-
- [XmlElement("LastModified")]
- public string lastModified;
-
-
-
- [XmlElement("ETag")]
- public string eTag;
-
-
-
- [XmlElement("Size")]
- public string size;
- }
- }
- }
|