| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] [readonly] | |
| last_updated_date | str | [optional] [readonly] | |
| name | str | Display name of the push provider | [optional] |
| provider_type | ProviderType | [optional] | |
| links | LinksSelf | [optional] |
from okta.models.push_provider import PushProvider
# TODO update the JSON string below
json = "{}"
# create an instance of PushProvider from a JSON string
push_provider_instance = PushProvider.from_json(json)
# print the JSON string representation of the object
print(PushProvider.to_json())
# convert the object into a dict
push_provider_dict = push_provider_instance.to_dict()
# create an instance of PushProvider from a dict
push_provider_from_dict = PushProvider.from_dict(push_provider_dict)