Class CreatedMetadata
Timestamp for when the object was created.
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudSave
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "CreatedMetadata")]
[Preserve]
public class CreatedMetadata
Constructors
CreatedMetadata(DateTime?)
Initializes a new instance of the CreatedMetadata class.
Declaration
[Preserve]
public CreatedMetadata(DateTime? date = null)
Parameters
Type | Name | Description |
---|---|---|
DateTime? | date | Date time in ISO 8601 format. Null if there is no associated value. (required). |
Properties
Date
Date time in ISO 8601 format. Null if there is no associated value.
Declaration
[DataMember(Name = "date", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public DateTime? Date { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | Date time in ISO 8601 format. Null if there is no associated value. |