Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

AuthorizedAppDataRep

Properties

Name Type Description Notes
links Dict[str, Link] [optional]
id str The ID of the authorized application [optional]
is_scim bool Whether the application is authorized through SCIM [optional]
name str The authorized application name [optional]
maintainer_name str The name of the maintainer for this authorized application [optional]

Example

from launchdarkly_api.models.authorized_app_data_rep import AuthorizedAppDataRep

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

# convert the object into a dict
authorized_app_data_rep_dict = authorized_app_data_rep_instance.to_dict()
# create an instance of AuthorizedAppDataRep from a dict
authorized_app_data_rep_from_dict = AuthorizedAppDataRep.from_dict(authorized_app_data_rep_dict)

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