public sealed class TimeInterval : IMessage<TimeInterval>, IEquatable<TimeInterval>, IDeepCloneable<TimeInterval>, IBufferMessage, IMessage
Reference documentation and code samples for the BigQuery Migration v2 API class TimeInterval.
A time interval extending just after a start time through an end time. If the start time is the same as the end time, then the interval represents a single point in time.
Implements
IMessage<TimeInterval>, IEquatable<TimeInterval>, IDeepCloneable<TimeInterval>, IBufferMessage, IMessageNamespace
Google.Cloud.BigQuery.Migration.V2Assembly
Google.Cloud.BigQuery.Migration.V2.dll
Constructors
TimeInterval()
public TimeInterval()
TimeInterval(TimeInterval)
public TimeInterval(TimeInterval other)
Parameter | |
---|---|
Name | Description |
other | TimeInterval |
Properties
EndTime
public Timestamp EndTime { get; set; }
Required. The end of the time interval.
Property Value | |
---|---|
Type | Description |
Timestamp |
StartTime
public Timestamp StartTime { get; set; }
Optional. The beginning of the time interval. The default value for the start time is the end time. The start time must not be later than the end time.
Property Value | |
---|---|
Type | Description |
Timestamp |