Name | Type | Description | Notes |
---|---|---|---|
cores | int | [optional] | |
memory | EnvResourcesMemory | [optional] | |
routines | int | [optional] |
from photoprism_client.models.env_resources import EnvResources
# TODO update the JSON string below
json = "{}"
# create an instance of EnvResources from a JSON string
env_resources_instance = EnvResources.from_json(json)
# print the JSON string representation of the object
print(EnvResources.to_json())
# convert the object into a dict
env_resources_dict = env_resources_instance.to_dict()
# create an instance of EnvResources from a dict
env_resources_from_dict = EnvResources.from_dict(env_resources_dict)