Class: TencentCloud::Domain::V20180808::ContactInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Domain::V20180808::ContactInfo
- Defined in:
- lib/v20180808/models.rb
Overview
域名联系人信息
Instance Attribute Summary collapse
- #City ⇒ Object
- #CityCN ⇒ Object
- #Country ⇒ Object
- #CountryCN ⇒ Object
- #Email ⇒ Object
- #OrganizationName ⇒ Object
- #OrganizationNameCN ⇒ Object
- #Province ⇒ Object
- #ProvinceCN ⇒ Object
- #RegistrantName ⇒ Object
- #RegistrantNameCN ⇒ Object
- #RegistrantType ⇒ Object
- #Street ⇒ Object
- #StreetCN ⇒ Object
- #Telephone ⇒ Object
- #ZipCode ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(organizationnamecn = nil, organizationname = nil, registrantnamecn = nil, registrantname = nil, provincecn = nil, citycn = nil, streetcn = nil, street = nil, countrycn = nil, telephone = nil, email = nil, zipcode = nil, registranttype = nil, province = nil, city = nil, country = nil) ⇒ ContactInfo
constructor
A new instance of ContactInfo.
Constructor Details
#initialize(organizationnamecn = nil, organizationname = nil, registrantnamecn = nil, registrantname = nil, provincecn = nil, citycn = nil, streetcn = nil, street = nil, countrycn = nil, telephone = nil, email = nil, zipcode = nil, registranttype = nil, province = nil, city = nil, country = nil) ⇒ ContactInfo
Returns a new instance of ContactInfo.
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
# File 'lib/v20180808/models.rb', line 662 def initialize(organizationnamecn=nil, organizationname=nil, registrantnamecn=nil, registrantname=nil, provincecn=nil, citycn=nil, streetcn=nil, street=nil, countrycn=nil, telephone=nil, email=nil, zipcode=nil, registranttype=nil, province=nil, city=nil, country=nil) @OrganizationNameCN = organizationnamecn @OrganizationName = organizationname @RegistrantNameCN = registrantnamecn @RegistrantName = registrantname @ProvinceCN = provincecn @CityCN = citycn @StreetCN = streetcn @Street = street @CountryCN = countrycn @Telephone = telephone @Email = email @ZipCode = zipcode @RegistrantType = registranttype @Province = province @City = city @Country = country end |
Instance Attribute Details
#City ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def City @City end |
#CityCN ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def CityCN @CityCN end |
#Country ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def Country @Country end |
#CountryCN ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def CountryCN @CountryCN end |
#Email ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def Email @Email end |
#OrganizationName ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def OrganizationName @OrganizationName end |
#OrganizationNameCN ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def OrganizationNameCN @OrganizationNameCN end |
#Province ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def Province @Province end |
#ProvinceCN ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def ProvinceCN @ProvinceCN end |
#RegistrantName ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def RegistrantName @RegistrantName end |
#RegistrantNameCN ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def RegistrantNameCN @RegistrantNameCN end |
#RegistrantType ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def RegistrantType @RegistrantType end |
#Street ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def Street @Street end |
#StreetCN ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def StreetCN @StreetCN end |
#Telephone ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def Telephone @Telephone end |
#ZipCode ⇒ Object
660 661 662 |
# File 'lib/v20180808/models.rb', line 660 def ZipCode @ZipCode end |
Instance Method Details
#deserialize(params) ⇒ Object
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 |
# File 'lib/v20180808/models.rb', line 681 def deserialize(params) @OrganizationNameCN = params['OrganizationNameCN'] @OrganizationName = params['OrganizationName'] @RegistrantNameCN = params['RegistrantNameCN'] @RegistrantName = params['RegistrantName'] @ProvinceCN = params['ProvinceCN'] @CityCN = params['CityCN'] @StreetCN = params['StreetCN'] @Street = params['Street'] @CountryCN = params['CountryCN'] @Telephone = params['Telephone'] @Email = params['Email'] @ZipCode = params['ZipCode'] @RegistrantType = params['RegistrantType'] @Province = params['Province'] @City = params['City'] @Country = params['Country'] end |