# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class PersonalAssistantsResponse(Model):
"""Response containing user's endpoint keys and the endpoint URLs of the
prebuilt Cortana applications.
:param endpoint_keys:
:type endpoint_keys: list[str]
:param endpoint_urls:
:type endpoint_urls: dict[str, str]
"""
_attribute_map = {
'endpoint_keys': {'key': 'endpointKeys', 'type': '[str]'},
'endpoint_urls': {'key': 'endpointUrls', 'type': '{str}'},
}
def __init__(self, *, endpoint_keys=None, endpoint_urls=None, **kwargs) -> None:
super(PersonalAssistantsResponse, self).__init__(**kwargs)
self.endpoint_keys = endpoint_keys
self.endpoint_urls = endpoint_urls