Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

File metadata and controls

32 lines (23 loc) · 1.35 KB

UserConnectionSpec

Properties

Name Type Description Notes
provider_user_id str The unique identifier for the user's connection to the OAuth provider. for example, the user's GitHub id.
registration_id str The name of the OAuth provider (e.g. Google, Facebook, Twitter).
updated_at datetime The time when the user connection was last updated. [optional]
username str The {@link Metadata#getName Metadata#getName()} of the user associated with the OAuth connection.

Example

from halo_client.models.user_connection_spec import UserConnectionSpec

# TODO update the JSON string below
json = "{}"
# create an instance of UserConnectionSpec from a JSON string
user_connection_spec_instance = UserConnectionSpec.from_json(json)
# print the JSON string representation of the object
print(UserConnectionSpec.to_json())

# convert the object into a dict
user_connection_spec_dict = user_connection_spec_instance.to_dict()
# create an instance of UserConnectionSpec from a dict
user_connection_spec_from_dict = UserConnectionSpec.from_dict(user_connection_spec_dict)

[Back to Model list] [Back to API list] [Back to README]