Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 915 Bytes

NewSession.md

File metadata and controls

31 lines (22 loc) · 915 Bytes

NewSession

Properties

Name Type Description Notes
login_id str
passwd str
ip_address str [optional] [default to '127.0.0.1']

Example

from kf_sdk.models.new_session import NewSession

# TODO update the JSON string below
json = "{}"
# create an instance of NewSession from a JSON string
new_session_instance = NewSession.from_json(json)
# print the JSON string representation of the object
print(NewSession.to_json())

# convert the object into a dict
new_session_dict = new_session_instance.to_dict()
# create an instance of NewSession from a dict
new_session_from_dict = NewSession.from_dict(new_session_dict)

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