You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Name of the organization for contact types other than PERSON.
119
119
*/
120
-
organizationName?: string
120
+
organizationName: string
121
121
/**
122
122
* First line of the contact's address.
123
123
*/
124
-
addressLine1?: string
124
+
addressLine1: string
125
125
/**
126
126
* Second line of contact's address, if any.
127
127
*/
128
-
addressLine2?: string
128
+
addressLine2: string
129
129
/**
130
130
* The city of the contact's address.
131
131
*/
132
-
city?: string
132
+
city: string
133
133
/**
134
134
* The state or province of the contact's city.
135
135
*/
136
-
state?: string
136
+
state: string
137
137
/**
138
138
* Code for the country of the contact's address.
139
139
*/
140
-
countryCode?: CountryCode
140
+
countryCode: CountryCode
141
141
/**
142
142
* The zip or postal code of the contact's address.
143
143
*/
144
-
zip?: string
144
+
zip: string
145
145
/**
146
146
* The phone number of the contact.
147
147
* Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code>]".
148
148
* For example, a US phone number might appear as "+1.1234567890".
149
149
* @example +1.1234567890
150
150
*/
151
-
phoneNumber?: string
151
+
phoneNumber: string
152
152
/**
153
153
* Email address of the contact.
154
154
*/
155
-
email?: string
155
+
email: string
156
156
/**
157
157
* Fax number of the contact. Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code]". For example, a US phone number might appear as "+1.1234567890".
158
158
*/
159
-
fax?: string
159
+
fax: string
160
160
/**
161
161
* A list of name-value pairs for parameters required by certain top-level domains.
162
162
*/
163
-
extraParams?: string
163
+
extraParams: string
164
164
165
165
/**
166
166
* Enable privacy protection for this domain.
167
167
* @default true
168
168
*/
169
-
privacy?: boolean
169
+
privacy: boolean
170
170
/**
171
171
* Enable privacy protection for the admin contact.
172
172
* @default true
173
173
*/
174
-
privacyAdmin?: boolean
174
+
privacyAdmin: boolean
175
175
/**
176
176
* Enable privacy protection for the tech contact.
177
177
* @default true
178
178
*/
179
-
privacyTech?: boolean
179
+
privacyTech: boolean
180
180
/**
181
181
* Enable privacy protection for the registrant contact.
0 commit comments