From d7ce0ac3de811f489fe63a9a21326d2832a14fc2 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Wed, 20 Mar 2019 11:04:13 -0500 Subject: [PATCH] new account_default table repository code --- shared/selene/data/device/entity/default.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 shared/selene/data/device/entity/default.py diff --git a/shared/selene/data/device/entity/default.py b/shared/selene/data/device/entity/default.py new file mode 100644 index 00000000..976486d8 --- /dev/null +++ b/shared/selene/data/device/entity/default.py @@ -0,0 +1,16 @@ +from dataclasses import dataclass + +from selene.data.geography import City, Country, Region, Timezone +from .text_to_speech import TextToSpeech +from .wake_word import WakeWord + + +@dataclass +class AccountDefaults(object): + id: str + city: City = None + country: Country = None + region: Region = None + timezone: Timezone = None + voice: TextToSpeech = None + wake_word: WakeWord = None