File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 11""" Cardholder Detail """
22from typing import Optional , Any
3+ from datetime import datetime
34from typing_extensions import Self
45
56from pydantic import model_validator
1718 DivisionRef ,
1819 PlaceholderRef ,
1920 RoleRef ,
21+ AccessZoneRef ,
2022)
2123
2224from ..summary import (
@@ -94,6 +96,10 @@ class CardholderDetail(
9496 description : Optional [str ] = None
9597 authorised : bool
9698
99+ last_successful_access_time : Optional [datetime ] = None
100+ last_successful_access_zone : Optional [AccessZoneRef ] = None
101+ server_display_name : Optional [str ] = None
102+
97103 disable_cipher_pad : bool = False
98104 division : DivisionRef
99105 edit : HrefMixin
Original file line number Diff line number Diff line change 11from ..utils import (
22 AppBaseModel ,
3- IdentityMixin ,
3+ OptionalIdentityMixin ,
44 HrefMixin ,
55)
66
77
8- class AccessZoneRef (AppBaseModel , IdentityMixin , HrefMixin ):
8+ class AccessZoneRef (
9+ AppBaseModel ,
10+ OptionalIdentityMixin ,
11+ HrefMixin
12+ ):
913 """AccessZone represents"""
1014
1115 name : str
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments