Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 943 Bytes

File metadata and controls

29 lines (20 loc) · 943 Bytes

FCMPushProvider

Properties

Name Type Description Notes
configuration FCMConfiguration [optional]

Example

from okta.models.fcm_push_provider import FCMPushProvider

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

# convert the object into a dict
fcm_push_provider_dict = fcm_push_provider_instance.to_dict()
# create an instance of FCMPushProvider from a dict
fcm_push_provider_from_dict = FCMPushProvider.from_dict(fcm_push_provider_dict)

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