| Name | Type | Description | Notes |
|---|---|---|---|
| configuration | APNSConfiguration | [optional] |
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)