1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# 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
class Contact(Model):
"""Contact information for domain registration. If 'Domain Privacy' option is
not selected then the contact information is made publicly available
through the Whois
directories as per ICANN requirements.
All required parameters must be populated in order to send to Azure.
:param address_mailing: Mailing address.
:type address_mailing: ~azure.mgmt.web.models.Address
:param email: Required. Email address.
:type email: str
:param fax: Fax number.
:type fax: str
:param job_title: Job title.
:type job_title: str
:param name_first: Required. First name.
:type name_first: str
:param name_last: Required. Last name.
:type name_last: str
:param name_middle: Middle name.
:type name_middle: str
:param organization: Organization contact belongs to.
:type organization: str
:param phone: Required. Phone number.
:type phone: str
"""
_validation = {
'email': {'required': True},
'name_first': {'required': True},
'name_last': {'required': True},
'phone': {'required': True},
}
_attribute_map = {
'address_mailing': {'key': 'addressMailing', 'type': 'Address'},
'email': {'key': 'email', 'type': 'str'},
'fax': {'key': 'fax', 'type': 'str'},
'job_title': {'key': 'jobTitle', 'type': 'str'},
'name_first': {'key': 'nameFirst', 'type': 'str'},
'name_last': {'key': 'nameLast', 'type': 'str'},
'name_middle': {'key': 'nameMiddle', 'type': 'str'},
'organization': {'key': 'organization', 'type': 'str'},
'phone': {'key': 'phone', 'type': 'str'},
}
def __init__(self, *, email: str, name_first: str, name_last: str, phone: str, address_mailing=None, fax: str=None, job_title: str=None, name_middle: str=None, organization: str=None, **kwargs) -> None:
super(Contact, self).__init__(**kwargs)
self.address_mailing = address_mailing
self.email = email
self.fax = fax
self.job_title = job_title
self.name_first = name_first
self.name_last = name_last
self.name_middle = name_middle
self.organization = organization
self.phone = phone
|