Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

File metadata and controls

30 lines (21 loc) · 1.14 KB

ReminderPreferencesResponse

Response model for reminder preferences.

Properties

Name Type Description Notes
reminders ReminderPreferences Reminder/nudge email preferences

Example

from mixpeek.models.reminder_preferences_response import ReminderPreferencesResponse

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

# convert the object into a dict
reminder_preferences_response_dict = reminder_preferences_response_instance.to_dict()
# create an instance of ReminderPreferencesResponse from a dict
reminder_preferences_response_from_dict = ReminderPreferencesResponse.from_dict(reminder_preferences_response_dict)

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