@@ -42,8 +42,8 @@ class MusicApis(object):
42
42
:type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
43
43
:param capabilities: Defines the structure of music capabilities information in the skill manifest.
44
44
: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]
47
47
:param locales: Defines the structure of locale specific music information in the skill manifest.
48
48
:type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
49
49
:param content_types: List of the type of content to be provided by the music skill.
@@ -54,7 +54,7 @@ class MusicApis(object):
54
54
'regions' : 'dict(str, ask_smapi_model.v1.skill.manifest.lambda_region.LambdaRegion)' ,
55
55
'endpoint' : 'ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint' ,
56
56
'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] ' ,
58
58
'locales' : 'dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)' ,
59
59
'content_types' : 'list[ask_smapi_model.v1.skill.manifest.music_content_type.MusicContentType]'
60
60
} # type: Dict
@@ -70,7 +70,7 @@ class MusicApis(object):
70
70
supports_multiple_types = False
71
71
72
72
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
74
74
"""Defines the structure of music api in the skill manifest.
75
75
76
76
: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
79
79
:type endpoint: (optional) ask_smapi_model.v1.skill.manifest.lambda_endpoint.LambdaEndpoint
80
80
:param capabilities: Defines the structure of music capabilities information in the skill manifest.
81
81
: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]
84
84
:param locales: Defines the structure of locale specific music information in the skill manifest.
85
85
:type locales: (optional) dict(str, ask_smapi_model.v1.skill.manifest.localized_music_info.LocalizedMusicInfo)
86
86
:param content_types: List of the type of content to be provided by the music skill.
0 commit comments