Class Timestamp
A Timestamp represents a point in time independent of any time zone or local calendar, encoded as a count of seconds and fractions of seconds at nanosecond resolution. The count is relative to an epoch at UTC midnight on January 1, 1970.
Inheritance
System.Object
Timestamp
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AndroidPublisher.v3.Data
Assembly: Google.Apis.AndroidPublisher.v3.dll
Syntax
public class Timestamp : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Nanos
Non-negative fractions of a second at nanosecond resolution. Must be from 0 to 999,999,999 inclusive.
Declaration
[JsonProperty("nanos")]
public virtual int? Nanos { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Seconds
Represents seconds of UTC time since Unix epoch.
Declaration
[JsonProperty("seconds")]
public virtual long? Seconds { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int64> |