from slurmrest_python.models.v0044_reservation_core_spec import V0044ReservationCoreSpec
# TODO update the JSON string below
json = "{}"
# create an instance of V0044ReservationCoreSpec from a JSON string
v0044_reservation_core_spec_instance = V0044ReservationCoreSpec.from_json(json)
# print the JSON string representation of the object
print(V0044ReservationCoreSpec.to_json())
# convert the object into a dict
v0044_reservation_core_spec_dict = v0044_reservation_core_spec_instance.to_dict()
# create an instance of V0044ReservationCoreSpec from a dict
v0044_reservation_core_spec_from_dict = V0044ReservationCoreSpec.from_dict(v0044_reservation_core_spec_dict)