Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.18 KB

File metadata and controls

38 lines (29 loc) · 1.18 KB

SourceType

Serializer for SourceType

Properties

Name Type Description Notes
name str
verbose_name str
urls_customizable bool
request_token_url str [readonly]
authorization_url str [readonly]
access_token_url str [readonly]
profile_url str [readonly]
oidc_well_known_url str [readonly]
oidc_jwks_url str [readonly]

Example

from authentik_client.models.source_type import SourceType

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

# convert the object into a dict
source_type_dict = source_type_instance.to_dict()
# create an instance of SourceType from a dict
source_type_from_dict = SourceType.from_dict(source_type_dict)

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