Class TimePeriod
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class TimePeriod : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
End
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use EndDateTimeOffset instead.")]
public virtual DateTime? End { get; set; }
Property Value
EndDateTimeOffset
Declaration
[JsonIgnore]
public virtual DateTimeOffset? EndDateTimeOffset { get; set; }
Property Value
EndRaw
The (exclusive) end of the time period.
Declaration
[JsonProperty("end")]
public virtual string EndRaw { get; set; }
Property Value
Start
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartDateTimeOffset instead.")]
public virtual DateTime? Start { get; set; }
Property Value
StartDateTimeOffset
Declaration
[JsonIgnore]
public virtual DateTimeOffset? StartDateTimeOffset { get; set; }
Property Value
StartRaw
The (inclusive) start of the time period.
Declaration
[JsonProperty("start")]
public virtual string StartRaw { get; set; }
Property Value
Implements