Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.52 KB

File metadata and controls

31 lines (22 loc) · 1.52 KB

Datamartprocessorv3GetEarliestStartTimeResponse

GetEarliestStartTimeResponse response object.

Properties

Name Type Description Notes
status Datamartprocessorv3StatusResponseBase [optional]
timestamp datetime Earliest time stamp of data available. [optional]

Example

from ibm_gdsc_sdk_saas.models.datamartprocessorv3_get_earliest_start_time_response import Datamartprocessorv3GetEarliestStartTimeResponse

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

# convert the object into a dict
datamartprocessorv3_get_earliest_start_time_response_dict = datamartprocessorv3_get_earliest_start_time_response_instance.to_dict()
# create an instance of Datamartprocessorv3GetEarliestStartTimeResponse from a dict
datamartprocessorv3_get_earliest_start_time_response_from_dict = Datamartprocessorv3GetEarliestStartTimeResponse.from_dict(datamartprocessorv3_get_earliest_start_time_response_dict)

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