ask_sdk_model.interfaces.videoapp 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.videoapp.launch_directive module

class ask_sdk_model.interfaces.videoapp.launch_directive.LaunchDirective(video_item=None)

Bases: ask_sdk_model.directive.Directive

Parameters:video_item ((optional) ask_sdk_model.interfaces.videoapp.video_item.VideoItem) –
attribute_map = {'object_type': 'type', 'video_item': 'videoItem'}
deserialized_types = {'object_type': 'str', 'video_item': 'ask_sdk_model.interfaces.videoapp.video_item.VideoItem'}
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.videoapp.metadata module

class ask_sdk_model.interfaces.videoapp.metadata.Metadata(title=None, subtitle=None)

Bases: object

Parameters:
  • title ((optional) str) –
  • subtitle ((optional) str) –
attribute_map = {'subtitle': 'subtitle', 'title': 'title'}
deserialized_types = {'subtitle': 'str', 'title': 'str'}
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.videoapp.video_app_interface module

class ask_sdk_model.interfaces.videoapp.video_app_interface.VideoAppInterface

Bases: object

attribute_map = {}
deserialized_types = {}
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.videoapp.video_item module

class ask_sdk_model.interfaces.videoapp.video_item.VideoItem(source=None, metadata=None)

Bases: object

Parameters:
attribute_map = {'metadata': 'metadata', 'source': 'source'}
deserialized_types = {'metadata': 'ask_sdk_model.interfaces.videoapp.metadata.Metadata', 'source': 'str'}
supports_multiple_types = False
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model