Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 958 Bytes

File metadata and controls

29 lines (20 loc) · 958 Bytes

APNSPushProvider

Properties

Name Type Description Notes
configuration APNSConfiguration [optional]

Example

from okta.models.apns_push_provider import APNSPushProvider

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

# convert the object into a dict
apns_push_provider_dict = apns_push_provider_instance.to_dict()
# create an instance of APNSPushProvider from a dict
apns_push_provider_from_dict = APNSPushProvider.from_dict(apns_push_provider_dict)

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