Show / Hide Table of Contents

Class Time

A model to hold time in hour:minute:second format.

Inheritance
object
Time
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.

In this article
Back to top