lenticular_cloud2/libs/ory-hydra-client/ory_hydra_client/models/consent_request_session_id_...

61 lines
1.5 KiB
Python
Raw Normal View History

2023-01-13 14:52:38 +00:00
from typing import Any, Dict, Type, TypeVar, Tuple, Optional, BinaryIO, TextIO
from typing import List
import attr
2023-01-13 14:52:38 +00:00
from ..types import UNSET, Unset
2023-01-13 14:52:38 +00:00
T = TypeVar("T", bound="ConsentRequestSessionIdToken")
@attr.s(auto_attribs=True)
class ConsentRequestSessionIdToken:
"""IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session'id payloads are readable
2023-01-13 14:52:38 +00:00
by anyone that has access to the ID Challenge. Use with care!
"""
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
2023-01-13 14:52:38 +00:00
def to_dict(self) -> Dict[str, Any]:
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
2023-01-13 14:52:38 +00:00
field_dict.update({
})
return field_dict
2023-01-13 14:52:38 +00:00
@classmethod
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
_d = src_dict.copy()
2023-01-13 14:52:38 +00:00
consent_request_session_id_token = cls(
)
consent_request_session_id_token.additional_properties = _d
return consent_request_session_id_token
@property
def additional_keys(self) -> List[str]:
return list(self.additional_properties.keys())
def __getitem__(self, key: str) -> Any:
return self.additional_properties[key]
def __setitem__(self, key: str, value: Any) -> None:
self.additional_properties[key] = value
def __delitem__(self, key: str) -> None:
del self.additional_properties[key]
def __contains__(self, key: str) -> bool:
return key in self.additional_properties