Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 852 Bytes

Session.md

File metadata and controls

30 lines (21 loc) · 852 Bytes

Session

Properties

Name Type Description Notes
token str [optional]
cluster LSFCluster [optional]

Example

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)

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