@@ -42,8 +42,8 @@ class MusicApis(object):
4242 :type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
4343 :param capabilities: Defines the structure of music capabilities information in the skill manifest.
4444 :type capabilities: (optional) list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]
45- :param interfaces:
46- :type interfaces: (optional) ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces
45+ :param interfaces: A list of music skill interfaces that your skill supports.
46+ :type interfaces: (optional) list[ ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]
4747 :param locales: Defines the structure of locale specific music information in the skill manifest.
4848 :type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
4949 :param content_types: List of the type of content to be provided by the music skill.
@@ -54,7 +54,7 @@ class MusicApis(object):
5454 'regions' : 'dict(str, ask_smapi_model.v1.skill.manifest.lambda_region.LambdaRegion)' ,
5555 'endpoint' : 'ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint' ,
5656 'capabilities' : 'list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]' ,
57- 'interfaces' : 'ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces' ,
57+ 'interfaces' : 'list[ ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces] ' ,
5858 'locales' : 'dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)' ,
5959 'content_types' : 'list[ask_smapi_model.v1.skill.manifest.music_content_type.MusicContentType]'
6060 } # type: Dict
@@ -70,7 +70,7 @@ class MusicApis(object):
7070 supports_multiple_types = False
7171
7272 def __init__ (self , regions = None , endpoint = None , capabilities = None , interfaces = None , locales = None , content_types = None ):
73- # type: (Optional[Dict[str, LambdaRegionV1]], Optional[LambdaEndpointV1], Optional[List[MusicCapabilityV1]], Optional[MusicInterfacesV1], Optional[Dict[str, LocalizedMusicInfoV1]], Optional[List[MusicContentTypeV1]]) -> None
73+ # type: (Optional[Dict[str, LambdaRegionV1]], Optional[LambdaEndpointV1], Optional[List[MusicCapabilityV1]], Optional[List[ MusicInterfacesV1] ], Optional[Dict[str, LocalizedMusicInfoV1]], Optional[List[MusicContentTypeV1]]) -> None
7474 """Defines the structure of music api in the skill manifest.
7575
7676 :param regions: Contains an array of the supported <region> Objects.
@@ -79,8 +79,8 @@ def __init__(self, regions=None, endpoint=None, capabilities=None, interfaces=No
7979 :type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
8080 :param capabilities: Defines the structure of music capabilities information in the skill manifest.
8181 :type capabilities: (optional) list[ask_smapi_model.v1.skill.manifest.music_capability.MusicCapability]
82- :param interfaces:
83- :type interfaces: (optional) ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces
82+ :param interfaces: A list of music skill interfaces that your skill supports.
83+ :type interfaces: (optional) list[ ask_smapi_model.v1.skill.manifest.music_interfaces.MusicInterfaces]
8484 :param locales: Defines the structure of locale specific music information in the skill manifest.
8585 :type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
8686 :param content_types: List of the type of content to be provided by the music skill.
0 commit comments