@@ -1256,6 +1256,8 @@ def retrieve_naics(
12561256 self ,
12571257 * ,
12581258 input : str ,
1259+ max_results : int | Omit = omit ,
1260+ min_results : int | Omit = omit ,
12591261 timeout_ms : int | Omit = omit ,
12601262 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
12611263 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -1272,6 +1274,11 @@ def retrieve_naics(
12721274 in `input`, it will be used for classification, otherwise, we will search for
12731275 the brand using the provided title.
12741276
1277+ max_results: Maximum number of NAICS codes to return. Must be between 1 and 10. Defaults
1278+ to 5.
1279+
1280+ min_results: Minimum number of NAICS codes to return. Must be at least 1. Defaults to 1.
1281+
12751282 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
12761283 than this value, it will be aborted with a 408 status code. Maximum allowed
12771284 value is 300000ms (5 minutes).
@@ -1294,6 +1301,8 @@ def retrieve_naics(
12941301 query = maybe_transform (
12951302 {
12961303 "input" : input ,
1304+ "max_results" : max_results ,
1305+ "min_results" : min_results ,
12971306 "timeout_ms" : timeout_ms ,
12981307 },
12991308 brand_retrieve_naics_params .BrandRetrieveNaicsParams ,
@@ -2683,6 +2692,8 @@ async def retrieve_naics(
26832692 self ,
26842693 * ,
26852694 input : str ,
2695+ max_results : int | Omit = omit ,
2696+ min_results : int | Omit = omit ,
26862697 timeout_ms : int | Omit = omit ,
26872698 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
26882699 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -2699,6 +2710,11 @@ async def retrieve_naics(
26992710 in `input`, it will be used for classification, otherwise, we will search for
27002711 the brand using the provided title.
27012712
2713+ max_results: Maximum number of NAICS codes to return. Must be between 1 and 10. Defaults
2714+ to 5.
2715+
2716+ min_results: Minimum number of NAICS codes to return. Must be at least 1. Defaults to 1.
2717+
27022718 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
27032719 than this value, it will be aborted with a 408 status code. Maximum allowed
27042720 value is 300000ms (5 minutes).
@@ -2721,6 +2737,8 @@ async def retrieve_naics(
27212737 query = await async_maybe_transform (
27222738 {
27232739 "input" : input ,
2740+ "max_results" : max_results ,
2741+ "min_results" : min_results ,
27242742 "timeout_ms" : timeout_ms ,
27252743 },
27262744 brand_retrieve_naics_params .BrandRetrieveNaicsParams ,
0 commit comments