Response model for reminder preferences.
| Name | Type | Description | Notes |
|---|---|---|---|
| reminders | ReminderPreferences | Reminder/nudge email preferences |
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)