public sealed class TimeRange : IMessage<StartManualTransferRunsRequest.Types.TimeRange>, IEquatable<StartManualTransferRunsRequest.Types.TimeRange>, IDeepCloneable<StartManualTransferRunsRequest.Types.TimeRange>, IBufferMessage, IMessage
A specification for a time range, this will request transfer runs with
run_time between start_time (inclusive) and end_time (exclusive).
End time of the range of transfer runs. For example,
"2017-05-30T00:00:00+00:00". The end_time must not be in the future.
Creates transfer runs where run_time is in the range betwen start_time
(inclusive) and end_time (exlusive).
Start time of the range of transfer runs. For example,
"2017-05-25T00:00:00+00:00". The start_time must be strictly less than
the end_time. Creates transfer runs where run_time is in the range betwen
start_time (inclusive) and end_time (exlusive).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage details the `TimeRange` class, a component of the `StartManualTransferRunsRequest.Types` within the `Google.Cloud.BigQuery.DataTransfer.V1` namespace."],["The `TimeRange` class is used to specify a period for transfer runs, defining the `start_time` (inclusive) and `end_time` (exclusive) boundaries within which runs are to be created."],["The `TimeRange` class implements several interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, and inherits from the base `Object` class, offering methods and properties for transfer run time specifications."],["The `TimeRange` class offers two constructors, one is a default constructor and the other one accepts another `StartManualTransferRunsRequest.Types.TimeRange` object as a parameter, allowing for the creation of `TimeRange` objects using existing ones."],["The `EndTime` and `StartTime` properties, both of the `Timestamp` type, are the primary attributes of the `TimeRange` class, representing the limits of the designated transfer run period, with `end_time` not allowed to be in the future, and `start_time` being strictly before `end_time`."]]],[]]