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.
| Name | Type | Description | Notes |
|---|---|---|---|
| token | str | Token used to authenticate with the app |
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)