Name | Type | Description | Notes |
---|---|---|---|
token | str | [optional] | |
cluster | LSFCluster | [optional] |
from lsf_client.models.session import Session
# TODO update the JSON string below
json = "{}"
# create an instance of Session from a JSON string
session_instance = Session.from_json(json)
# print the JSON string representation of the object
print(Session.to_json())
# convert the object into a dict
session_dict = session_instance.to_dict()
# create an instance of Session from a dict
session_from_dict = Session.from_dict(session_dict)