Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 919 Bytes

File metadata and controls

33 lines (24 loc) · 919 Bytes

TimeDelta

Time delta

Properties

Name Type Description Notes
type str
days int
seconds int
microseconds int

Example

from titanium_airflow_client.models.time_delta import TimeDelta

# TODO update the JSON string below
json = "{}"
# create an instance of TimeDelta from a JSON string
time_delta_instance = TimeDelta.from_json(json)
# print the JSON string representation of the object
print(TimeDelta.to_json())

# convert the object into a dict
time_delta_dict = time_delta_instance.to_dict()
# create an instance of TimeDelta from a dict
time_delta_from_dict = TimeDelta.from_dict(time_delta_dict)

[Back to Model list] [Back to API list] [Back to README]