1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for
5# license information.
6#
7# Code generated by Microsoft (R) AutoRest Code Generator.
8# Changes may cause incorrect behavior and will be lost if the code is
9# regenerated.
10# --------------------------------------------------------------------------
11
12from msrest.serialization import Model
13
14
15class Contact(Model):
16    """The contact information for the vault certificates.
17
18    :param email_address: Email addresss.
19    :type email_address: str
20    :param name: Name.
21    :type name: str
22    :param phone: Phone number.
23    :type phone: str
24    """
25
26    _attribute_map = {
27        'email_address': {'key': 'email', 'type': 'str'},
28        'name': {'key': 'name', 'type': 'str'},
29        'phone': {'key': 'phone', 'type': 'str'},
30    }
31
32    def __init__(self, *, email_address: str=None, name: str=None, phone: str=None, **kwargs) -> None:
33        super(Contact, self).__init__(**kwargs)
34        self.email_address = email_address
35        self.name = name
36        self.phone = phone
37