@@ -419,11 +419,11 @@ export interface ContactExtensionIT {
419419 /**
420420 * @deprecated This option is useless anymore.
421421 */
422- europeanCitizenship ? : string
422+ europeanCitizenship : string
423423 /**
424424 * @deprecated Tax_code is renamed to pin.
425425 */
426- taxCode ? : string
426+ taxCode : string
427427 /**
428428 * Domain name registrant's Taxcode (mandatory / only optional when the trustee is used)
429429
@@ -535,10 +535,6 @@ export interface Contact {
535535 companyIdentificationCode : string
536536 lang : StdLanguageCode
537537 resale : boolean
538- /**
539- * @deprecated
540- */
541- questions ?: ContactQuestion [ ]
542538 extensionFr ?: ContactExtensionFR
543539 extensionEu ?: ContactExtensionEU
544540 whoisOptIn : boolean
@@ -547,6 +543,10 @@ export interface Contact {
547543 extensionNl ?: ContactExtensionNL
548544 status : ContactStatus
549545 extensionIt ?: ContactExtensionIT
546+ /**
547+ * @deprecated
548+ */
549+ questions : ContactQuestion [ ]
550550}
551551
552552
@@ -598,16 +598,16 @@ export interface NewContact {
598598 companyIdentificationCode ?: string
599599 lang : StdLanguageCode
600600 resale : boolean
601- /**
602- * @deprecated
603- */
604- questions ?: ContactQuestion [ ]
605601 extensionFr ?: ContactExtensionFR
606602 extensionEu ?: ContactExtensionEU
607603 whoisOptIn : boolean
608604 state ?: string
609605 extensionNl ?: ContactExtensionNL
610606 extensionIt ?: ContactExtensionIT
607+ /**
608+ * @deprecated
609+ */
610+ questions : ContactQuestion [ ]
611611}
612612
613613
@@ -1093,7 +1093,7 @@ export type ImportRawDNSZoneRequest = {
10931093 /**
10941094 * @deprecated
10951095 */
1096- content ? : string
1096+ content : string
10971097 projectId ?: string
10981098 /**
10991099 * @deprecated
@@ -1265,7 +1265,7 @@ export type ListDNSZonesRequest = {
12651265 /**
12661266 * @deprecated DNS zone on which to filter the returned DNS zones.
12671267 */
1268- dnsZone ? : string
1268+ dnsZone : string
12691269 /**
12701270 * DNS zones on which to filter the returned DNS zones.
12711271 */
@@ -1729,16 +1729,16 @@ export type RegistrarApiUpdateContactRequest = {
17291729 companyIdentificationCode ?: string
17301730 lang ?: StdLanguageCode
17311731 resale ?: boolean
1732- /**
1733- * @deprecated
1734- */
1735- questions ?: UpdateContactRequestQuestion [ ]
17361732 extensionFr ?: ContactExtensionFR
17371733 extensionEu ?: ContactExtensionEU
1738- whoisOptIn ?: boolean
1739- state ?: string
17401734 extensionNl ?: ContactExtensionNL
17411735 extensionIt ?: ContactExtensionIT
1736+ whoisOptIn ?: boolean
1737+ state ?: string
1738+ /**
1739+ * @deprecated
1740+ */
1741+ questions ?: UpdateContactRequestQuestion [ ]
17421742}
17431743
17441744
0 commit comments