Time¶
-
class
oci.data_integration.models.
Time
(**kwargs)¶ Bases:
object
A model to hold time in hour:minute:second format.
Methods
__init__
(**kwargs)Initializes a new Time object with values from keyword arguments. Attributes
hour
Gets the hour of this Time. minute
Gets the minute of this Time. second
Gets the second of this Time. -
__init__
(**kwargs)¶ Initializes a new Time object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - hour (int) – The value to assign to the hour property of this Time.
- minute (int) – The value to assign to the minute property of this Time.
- second (int) – The value to assign to the second property of this Time.
-
hour
¶ Gets the hour of this Time. The hour value.
Returns: The hour of this Time. Return type: int
-
minute
¶ Gets the minute of this Time. The minute value.
Returns: The minute of this Time. Return type: int
-
second
¶ Gets the second of this Time. The second value.
Returns: The second of this Time. Return type: int
-