@@ -36,17 +36,23 @@ class CreateLoginProfileRequest(object):
3636 'login_allowed' : 'bool' ,
3737 'password' : 'str' ,
3838 'password_reset_required' : 'bool' ,
39+ 'safe_auth_exempt_duration' : 'int' ,
40+ 'safe_auth_flag' : 'bool' ,
41+ 'safe_auth_type' : 'str' ,
3942 'user_name' : 'str'
4043 }
4144
4245 attribute_map = {
4346 'login_allowed' : 'LoginAllowed' ,
4447 'password' : 'Password' ,
4548 'password_reset_required' : 'PasswordResetRequired' ,
49+ 'safe_auth_exempt_duration' : 'SafeAuthExemptDuration' ,
50+ 'safe_auth_flag' : 'SafeAuthFlag' ,
51+ 'safe_auth_type' : 'SafeAuthType' ,
4652 'user_name' : 'UserName'
4753 }
4854
49- def __init__ (self , login_allowed = None , password = None , password_reset_required = None , user_name = None , _configuration = None ): # noqa: E501
55+ def __init__ (self , login_allowed = None , password = None , password_reset_required = None , safe_auth_exempt_duration = None , safe_auth_flag = None , safe_auth_type = None , user_name = None , _configuration = None ): # noqa: E501
5056 """CreateLoginProfileRequest - a model defined in Swagger""" # noqa: E501
5157 if _configuration is None :
5258 _configuration = Configuration ()
@@ -55,6 +61,9 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
5561 self ._login_allowed = None
5662 self ._password = None
5763 self ._password_reset_required = None
64+ self ._safe_auth_exempt_duration = None
65+ self ._safe_auth_flag = None
66+ self ._safe_auth_type = None
5867 self ._user_name = None
5968 self .discriminator = None
6069
@@ -63,6 +72,12 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
6372 self .password = password
6473 if password_reset_required is not None :
6574 self .password_reset_required = password_reset_required
75+ if safe_auth_exempt_duration is not None :
76+ self .safe_auth_exempt_duration = safe_auth_exempt_duration
77+ if safe_auth_flag is not None :
78+ self .safe_auth_flag = safe_auth_flag
79+ if safe_auth_type is not None :
80+ self .safe_auth_type = safe_auth_type
6681 self .user_name = user_name
6782
6883 @property
@@ -130,6 +145,69 @@ def password_reset_required(self, password_reset_required):
130145
131146 self ._password_reset_required = password_reset_required
132147
148+ @property
149+ def safe_auth_exempt_duration (self ):
150+ """Gets the safe_auth_exempt_duration of this CreateLoginProfileRequest. # noqa: E501
151+
152+
153+ :return: The safe_auth_exempt_duration of this CreateLoginProfileRequest. # noqa: E501
154+ :rtype: int
155+ """
156+ return self ._safe_auth_exempt_duration
157+
158+ @safe_auth_exempt_duration .setter
159+ def safe_auth_exempt_duration (self , safe_auth_exempt_duration ):
160+ """Sets the safe_auth_exempt_duration of this CreateLoginProfileRequest.
161+
162+
163+ :param safe_auth_exempt_duration: The safe_auth_exempt_duration of this CreateLoginProfileRequest. # noqa: E501
164+ :type: int
165+ """
166+
167+ self ._safe_auth_exempt_duration = safe_auth_exempt_duration
168+
169+ @property
170+ def safe_auth_flag (self ):
171+ """Gets the safe_auth_flag of this CreateLoginProfileRequest. # noqa: E501
172+
173+
174+ :return: The safe_auth_flag of this CreateLoginProfileRequest. # noqa: E501
175+ :rtype: bool
176+ """
177+ return self ._safe_auth_flag
178+
179+ @safe_auth_flag .setter
180+ def safe_auth_flag (self , safe_auth_flag ):
181+ """Sets the safe_auth_flag of this CreateLoginProfileRequest.
182+
183+
184+ :param safe_auth_flag: The safe_auth_flag of this CreateLoginProfileRequest. # noqa: E501
185+ :type: bool
186+ """
187+
188+ self ._safe_auth_flag = safe_auth_flag
189+
190+ @property
191+ def safe_auth_type (self ):
192+ """Gets the safe_auth_type of this CreateLoginProfileRequest. # noqa: E501
193+
194+
195+ :return: The safe_auth_type of this CreateLoginProfileRequest. # noqa: E501
196+ :rtype: str
197+ """
198+ return self ._safe_auth_type
199+
200+ @safe_auth_type .setter
201+ def safe_auth_type (self , safe_auth_type ):
202+ """Sets the safe_auth_type of this CreateLoginProfileRequest.
203+
204+
205+ :param safe_auth_type: The safe_auth_type of this CreateLoginProfileRequest. # noqa: E501
206+ :type: str
207+ """
208+
209+ self ._safe_auth_type = safe_auth_type
210+
133211 @property
134212 def user_name (self ):
135213 """Gets the user_name of this CreateLoginProfileRequest. # noqa: E501
0 commit comments