| Name |
Type |
Description |
Notes |
| job_id |
str |
Reference by job ID. |
|
| deployment_id |
str |
Reference by deployment ID. |
|
| workspace_id |
str |
Reference by workspace ID. |
|
from saturn_api.models.resource_reference import ResourceReference
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceReference from a JSON string
resource_reference_instance = ResourceReference.from_json(json)
# print the JSON string representation of the object
print(ResourceReference.to_json())
# convert the object into a dict
resource_reference_dict = resource_reference_instance.to_dict()
# create an instance of ResourceReference from a dict
resource_reference_from_dict = ResourceReference.from_dict(resource_reference_dict)
[Back to Model list] [Back to API list] [Back to README]