Class Time
A model to hold time in hour:minute:second format.
Inherited Members
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class Time
Properties
Hour
Declaration
[JsonProperty(PropertyName = "hour")]
public int? Hour { get; set; }
Property Value
Type | Description |
---|---|
int? | The hour value. |
Minute
Declaration
[JsonProperty(PropertyName = "minute")]
public int? Minute { get; set; }
Property Value
Type | Description |
---|---|
int? | The minute value. |
Second
Declaration
[JsonProperty(PropertyName = "second")]
public int? Second { get; set; }
Property Value
Type | Description |
---|---|
int? | The second value. |