Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

File metadata and controls

30 lines (21 loc) · 1.33 KB

ProvisioningConnectionProfileToken

The app provisioning connection profile used to configure the method of authentication and the credentials. Currently, token-based and OAuth 2.0-based authentication are supported.

Properties

Name Type Description Notes
token str Token used to authenticate with the app

Example

from okta.models.provisioning_connection_profile_token import ProvisioningConnectionProfileToken

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

# convert the object into a dict
provisioning_connection_profile_token_dict = provisioning_connection_profile_token_instance.to_dict()
# create an instance of ProvisioningConnectionProfileToken from a dict
provisioning_connection_profile_token_from_dict = ProvisioningConnectionProfileToken.from_dict(provisioning_connection_profile_token_dict)

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