Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1017 Bytes

File metadata and controls

31 lines (22 loc) · 1017 Bytes

DateTime

The range for http://purl.org/dc/terms/created is http://www.w3.org/2000/01/rdf-schema#Literal. We will be more strict and require an ISO 8601 date or datetime.

Properties

Name Type Description Notes
type DateTimeType
value datetime

Example

from pyst_client.models.date_time import DateTime

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

# convert the object into a dict
date_time_dict = date_time_instance.to_dict()
# create an instance of DateTime from a dict
date_time_from_dict = DateTime.from_dict(date_time_dict)

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