-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathContainerObject.cs
More file actions
54 lines (49 loc) · 3.38 KB
/
Copy pathContainerObject.cs
File metadata and controls
54 lines (49 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
namespace net.openstack.Core.Domain
{
using System;
using Newtonsoft.Json;
/// <summary>
/// Provides the details of an object stored in an Object Storage provider.
/// </summary>
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/GET_showContainerDetails_v1__account___container__storage_container_services.html">Show container details and list objects (OpenStack Object Storage API v1 Reference)</seealso>
/// <threadsafety static="true" instance="false"/>
[JsonObject(MemberSerialization.OptIn)]
public class ContainerObject : ExtensibleJsonObject
{
/// <summary>
/// Gets a "name" associated with the object.
/// <note type="warning">The value of this property is not defined. Do not use.</note>
/// </summary>
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/GET_showContainerDetails_v1__account___container__storage_container_services.html">Show container details and list objects (OpenStack Object Storage API v1 Reference)</seealso>
[JsonProperty("name")]
public string Name { get; private set; }
/// <summary>
/// Gets the "hash" value associated with the object.
/// <note type="warning">The value of this property is not defined. Do not use.</note>
/// </summary>
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/GET_showContainerDetails_v1__account___container__storage_container_services.html">Show container details and list objects (OpenStack Object Storage API v1 Reference)</seealso>
[JsonProperty("hash")]
public string Hash { get; private set; }
/// <summary>
/// Gets the "bytes" value associated with the object.
/// <note type="warning">The value of this property is not defined. Do not use.</note>
/// </summary>
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/GET_showContainerDetails_v1__account___container__storage_container_services.html">Show container details and list objects (OpenStack Object Storage API v1 Reference)</seealso>
[JsonProperty("bytes")]
public long Bytes { get; private set; }
/// <summary>
/// Gets the "content type" value associated with the object.
/// <note type="warning">The value of this property is not defined. Do not use.</note>
/// </summary>
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/GET_showContainerDetails_v1__account___container__storage_container_services.html">Show container details and list objects (OpenStack Object Storage API v1 Reference)</seealso>
[JsonProperty("content_type")]
public string ContentType { get; private set; }
/// <summary>
/// Gets the "last modified" value associated with the object.
/// <note type="warning">The value of this property is not defined. Do not use.</note>
/// </summary>
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/GET_showContainerDetails_v1__account___container__storage_container_services.html">Show container details and list objects (OpenStack Object Storage API v1 Reference)</seealso>
[JsonProperty("last_modified")]
public DateTimeOffset LastModified { get; private set; }
}
}