@@ -36,17 +36,23 @@ class CreateLoginProfileRequest(object):
36
36
'login_allowed' : 'bool' ,
37
37
'password' : 'str' ,
38
38
'password_reset_required' : 'bool' ,
39
+ 'safe_auth_exempt_duration' : 'int' ,
40
+ 'safe_auth_flag' : 'bool' ,
41
+ 'safe_auth_type' : 'str' ,
39
42
'user_name' : 'str'
40
43
}
41
44
42
45
attribute_map = {
43
46
'login_allowed' : 'LoginAllowed' ,
44
47
'password' : 'Password' ,
45
48
'password_reset_required' : 'PasswordResetRequired' ,
49
+ 'safe_auth_exempt_duration' : 'SafeAuthExemptDuration' ,
50
+ 'safe_auth_flag' : 'SafeAuthFlag' ,
51
+ 'safe_auth_type' : 'SafeAuthType' ,
46
52
'user_name' : 'UserName'
47
53
}
48
54
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
50
56
"""CreateLoginProfileRequest - a model defined in Swagger""" # noqa: E501
51
57
if _configuration is None :
52
58
_configuration = Configuration ()
@@ -55,6 +61,9 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
55
61
self ._login_allowed = None
56
62
self ._password = None
57
63
self ._password_reset_required = None
64
+ self ._safe_auth_exempt_duration = None
65
+ self ._safe_auth_flag = None
66
+ self ._safe_auth_type = None
58
67
self ._user_name = None
59
68
self .discriminator = None
60
69
@@ -63,6 +72,12 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
63
72
self .password = password
64
73
if password_reset_required is not None :
65
74
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
66
81
self .user_name = user_name
67
82
68
83
@property
@@ -130,6 +145,69 @@ def password_reset_required(self, password_reset_required):
130
145
131
146
self ._password_reset_required = password_reset_required
132
147
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
+
133
211
@property
134
212
def user_name (self ):
135
213
"""Gets the user_name of this CreateLoginProfileRequest. # noqa: E501
0 commit comments