@@ -88,19 +88,19 @@ export namespace ProxyCreateResponse {
8888 */
8989 export interface DatacenterProxyConfig {
9090 /**
91- * ISO 3166 country code.
91+ * ISO 3166 country code. Defaults to US if not provided.
9292 */
93- country : string ;
93+ country ? : string ;
9494 }
9595
9696 /**
9797 * Configuration for an ISP proxy.
9898 */
9999 export interface IspProxyConfig {
100100 /**
101- * ISO 3166 country code.
101+ * ISO 3166 country code. Defaults to US if not provided.
102102 */
103- country : string ;
103+ country ? : string ;
104104 }
105105
106106 /**
@@ -308,19 +308,19 @@ export namespace ProxyRetrieveResponse {
308308 */
309309 export interface DatacenterProxyConfig {
310310 /**
311- * ISO 3166 country code.
311+ * ISO 3166 country code. Defaults to US if not provided.
312312 */
313- country : string ;
313+ country ? : string ;
314314 }
315315
316316 /**
317317 * Configuration for an ISP proxy.
318318 */
319319 export interface IspProxyConfig {
320320 /**
321- * ISO 3166 country code.
321+ * ISO 3166 country code. Defaults to US if not provided.
322322 */
323- country : string ;
323+ country ? : string ;
324324 }
325325
326326 /**
@@ -531,19 +531,19 @@ export namespace ProxyListResponse {
531531 */
532532 export interface DatacenterProxyConfig {
533533 /**
534- * ISO 3166 country code.
534+ * ISO 3166 country code. Defaults to US if not provided.
535535 */
536- country : string ;
536+ country ? : string ;
537537 }
538538
539539 /**
540540 * Configuration for an ISP proxy.
541541 */
542542 export interface IspProxyConfig {
543543 /**
544- * ISO 3166 country code.
544+ * ISO 3166 country code. Defaults to US if not provided.
545545 */
546- country : string ;
546+ country ? : string ;
547547 }
548548
549549 /**
@@ -737,19 +737,19 @@ export namespace ProxyCreateParams {
737737 */
738738 export interface DatacenterProxyConfig {
739739 /**
740- * ISO 3166 country code.
740+ * ISO 3166 country code. Defaults to US if not provided.
741741 */
742- country : string ;
742+ country ? : string ;
743743 }
744744
745745 /**
746746 * Configuration for an ISP proxy.
747747 */
748748 export interface IspProxyConfig {
749749 /**
750- * ISO 3166 country code.
750+ * ISO 3166 country code. Defaults to US if not provided.
751751 */
752- country : string ;
752+ country ? : string ;
753753 }
754754
755755 /**
0 commit comments