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.
Implements
Inherited Members
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 |
---|---|
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 |
---|---|
int? |
Seconds
Represents seconds of UTC time since Unix epoch.
Declaration
[JsonProperty("seconds")]
public virtual long? Seconds { get; set; }
Property Value
Type | Description |
---|---|
long? |