onvif
    Preparing search index...

    Interface TimePeriod

    A time period defines a start and end time. For full day access, the start time ="00:00:00" with no defined end time. For a time period with no end time, the schedule runs until midnight. The end time must always be greater than the start time, otherwise an InvalidArgVal error messages is generated by the device.

    interface TimePeriod {
        extension?: TimePeriodExtension;
        from: Time;
        until?: Time;
    }
    Index
    from: Time

    Indicates the start time.

    until?: Time

    Indicates the end time. Is optional, if omitted, the period ends at midnight. The end time is exclusive, meaning that that exact moment in time is not part of the period. To determine if a moment in time (t) is part of a time period, the formula StartTime ≤ t < EndTime is used.