new account_default table repository code

pull/79/head
Chris Veilleux 2019-03-20 11:04:13 -05:00
parent 604c156013
commit d7ce0ac3de
1 changed files with 16 additions and 0 deletions

View File

@ -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