processing date
Name | Type | Description | Notes |
---|
from usd_search_client.models.processing_timestamp import ProcessingTimestamp
# update the JSON string below
json = "{}"
# create an instance of ProcessingTimestamp from a JSON string
processing_timestamp_instance = ProcessingTimestamp.from_json(json)
# print the JSON string representation of the object
print(ProcessingTimestamp.to_json())
# convert the object into a dict
processing_timestamp_dict = processing_timestamp_instance.to_dict()
# create an instance of ProcessingTimestamp from a dict
processing_timestamp_from_dict = ProcessingTimestamp.from_dict(processing_timestamp_dict)