ask_sdk_model.interfaces.viewport.aplt package¶
Submodules¶
Note
Canonical imports have been added in the __init__.py of the package.
This helps in importing the class directly from the package, than
through the module.
For eg: if package a has module b with
class C, you can do from a import C instead of
from a.b import C.
ask_sdk_model.interfaces.viewport.aplt.character_format module¶
-
class
ask_sdk_model.interfaces.viewport.aplt.character_format.CharacterFormat¶ Bases:
enum.EnumSupported character set on a text display * `SEVEN_SEGMENT` - 7-segment display
Allowed enum values: [SEVEN_SEGMENT]
-
SEVEN_SEGMENT= 'SEVEN_SEGMENT'¶
-
to_dict()¶ Returns the model properties as a dict
-
to_str()¶ Returns the string representation of the model
-
ask_sdk_model.interfaces.viewport.aplt.inter_segment module¶
-
class
ask_sdk_model.interfaces.viewport.aplt.inter_segment.InterSegment(x=None, y=None, characters=None)¶ Bases:
objectParameters: -
attribute_map= {'characters': 'characters', 'x': 'x', 'y': 'y'}¶
-
deserialized_types= {'characters': 'str', 'x': 'int', 'y': 'int'}¶
-
supports_multiple_types= False¶
-
to_dict()¶ Returns the model properties as a dict
-
to_str()¶ Returns the string representation of the model
-
ask_sdk_model.interfaces.viewport.aplt.viewport_profile module¶
-
class
ask_sdk_model.interfaces.viewport.aplt.viewport_profile.ViewportProfile¶ Bases:
enum.Enumname of viewport's profile
Allowed enum values: [FOUR_CHARACTER_CLOCK]
-
FOUR_CHARACTER_CLOCK= 'FOUR_CHARACTER_CLOCK'¶
-
to_dict()¶ Returns the model properties as a dict
-
to_str()¶ Returns the string representation of the model
-