SessionCookieConfig

Properties

Name Type Description Notes
attributes Dict[str, str] [optional]
comment str [optional]
domain str [optional]
http_only bool [optional]
max_age int [optional]
name str [optional]
path str [optional]
secure bool [optional]

Example

from scc_firewall_manager_sdk.models.session_cookie_config import SessionCookieConfig

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

# convert the object into a dict
session_cookie_config_dict = session_cookie_config_instance.to_dict()
# create an instance of SessionCookieConfig from a dict
session_cookie_config_from_dict = SessionCookieConfig.from_dict(session_cookie_config_dict)

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