We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea0241c commit 9ec8517Copy full SHA for 9ec8517
1 file changed
workos/user_management/update_user_options.py
@@ -0,0 +1,11 @@
1
+def serialize_update_user_options(options):
2
+ return {
3
+ 'email': options['email'],
4
+ 'email_verified': options['emailVerified'],
5
+ 'first_name': options['firstName'],
6
+ 'last_name': options['lastName'],
7
+ 'password': options['password'],
8
+ 'password_hash': options['passwordHash'],
9
+ 'password_hash_type': options['passwordHashType'],
10
+ 'external_id': options['externalId'],
11
+ }
0 commit comments