Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

PushProvider

Properties

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]

Example

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)

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