File tree Expand file tree Collapse file tree 5 files changed +20
-4
lines changed
Expand file tree Collapse file tree 5 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1+ 2025-02-27 Version: 1.1.5
2+ - Update API GenericAdvancedSearch: add param industry.
3+
4+
152025-02-18 Version: 1.1.4
26- Generated csharp 2024-11-11 for IQS.
37
Original file line number Diff line number Diff line change @@ -235,6 +235,10 @@ public GenericAdvancedSearchResponse GenericAdvancedSearchWithOptions(GenericAdv
235235 {
236236 AlibabaCloud . TeaUtil . Common . ValidateModel ( request ) ;
237237 Dictionary < string , object > query = new Dictionary < string , object > ( ) { } ;
238+ if ( ! AlibabaCloud . TeaUtil . Common . IsUnset ( request . Industry ) )
239+ {
240+ query [ "industry" ] = request . Industry ;
241+ }
238242 if ( ! AlibabaCloud . TeaUtil . Common . IsUnset ( request . Query ) )
239243 {
240244 query [ "query" ] = request . Query ;
@@ -296,6 +300,10 @@ public async Task<GenericAdvancedSearchResponse> GenericAdvancedSearchWithOption
296300 {
297301 AlibabaCloud . TeaUtil . Common . ValidateModel ( request ) ;
298302 Dictionary < string , object > query = new Dictionary < string , object > ( ) { } ;
303+ if ( ! AlibabaCloud . TeaUtil . Common . IsUnset ( request . Industry ) )
304+ {
305+ query [ "industry" ] = request . Industry ;
306+ }
299307 if ( ! AlibabaCloud . TeaUtil . Common . IsUnset ( request . Query ) )
300308 {
301309 query [ "query" ] = request . Query ;
Original file line number Diff line number Diff line change 99namespace AlibabaCloud . SDK . IQS20241111 . Models
1010{
1111 public class GenericAdvancedSearchRequest : TeaModel {
12+ [ NameInMap ( "industry" ) ]
13+ [ Validation ( Required = false ) ]
14+ public string Industry { get ; set ; }
15+
1216 /// <summary>
1317 /// <para>This parameter is required.</para>
1418 /// </summary>
Original file line number Diff line number Diff line change 2020[ assembly: ComVisible ( false ) ]
2121
2222// The following GUID is for the ID of the typelib if this project is exposed to COM
23- [ assembly: Guid ( "c1b6e2b0-edb0 -11ef-9d36-b11a5556f260 " ) ]
23+ [ assembly: Guid ( "ebe3b910-f4c1 -11ef-a93d-7b7f14d437bf " ) ]
2424
2525// Version information for an assembly consists of the following four values:
2626//
2929// Build Number
3030// Revision
3131//
32- [ assembly: AssemblyVersion ( "1.1.3 .0" ) ]
33- [ assembly: AssemblyFileVersion ( "1.1.3 .0" ) ]
32+ [ assembly: AssemblyVersion ( "1.1.4 .0" ) ]
33+ [ assembly: AssemblyFileVersion ( "1.1.4 .0" ) ]
Original file line number Diff line number Diff line change 77 <GeneratePackageOnBuild >false</GeneratePackageOnBuild >
88 <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
99 <AssemblyName >AlibabaCloud.SDK.IQS20241111</AssemblyName >
10- <Version >1.1.4 </Version >
10+ <Version >1.1.5 </Version >
1111 <LangVersion >5</LangVersion >
1212 <Authors >Alibaba Cloud</Authors >
1313 <Description >Alibaba Cloud IQS (20241111) SDK Library for .NET</Description >
You can’t perform that action at this time.
0 commit comments