-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
OnvifSystemDateTime.cs
36 lines (31 loc) · 1.44 KB
/
OnvifSystemDateTime.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.Media.VideoAnalyzer.Edge.Models
{
/// <summary> The ONVIF device DNS properties. </summary>
public partial class OnvifSystemDateTime
{
/// <summary> Initializes a new instance of OnvifSystemDateTime. </summary>
public OnvifSystemDateTime()
{
}
/// <summary> Initializes a new instance of OnvifSystemDateTime. </summary>
/// <param name="type"> An enum value determining whether the date time was configured using NTP or manual. </param>
/// <param name="time"> The device datetime returned when calling the request. </param>
/// <param name="timeZone"> The timezone of the ONVIF device datetime. </param>
internal OnvifSystemDateTime(OnvifSystemDateTimeType? type, string time, string timeZone)
{
Type = type;
Time = time;
TimeZone = timeZone;
}
/// <summary> An enum value determining whether the date time was configured using NTP or manual. </summary>
public OnvifSystemDateTimeType? Type { get; set; }
/// <summary> The device datetime returned when calling the request. </summary>
public string Time { get; set; }
/// <summary> The timezone of the ONVIF device datetime. </summary>
public string TimeZone { get; set; }
}
}