| Name |
Type |
Description |
Notes |
| file_name |
str |
(Optional) File name for Admin Console display |
[optional] |
| key_id |
str |
10-character Key ID obtained from the Apple developer account |
[optional] |
| team_id |
str |
10-character Team ID used to develop the iOS app |
[optional] |
| token_signing_key |
str |
APNs private authentication token signing key |
[optional] |
from okta.models.apns_configuration import APNSConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of APNSConfiguration from a JSON string
apns_configuration_instance = APNSConfiguration.from_json(json)
# print the JSON string representation of the object
print(APNSConfiguration.to_json())
# convert the object into a dict
apns_configuration_dict = apns_configuration_instance.to_dict()
# create an instance of APNSConfiguration from a dict
apns_configuration_from_dict = APNSConfiguration.from_dict(apns_configuration_dict)
[Back to Model list] [Back to API list] [Back to README]