@@ -69,17 +69,20 @@ export class QueryCopyrightResponseBody extends $tea.Model {
6969
7070export class QueryCopyrightResponse extends $tea . Model {
7171 headers : { [ key : string ] : string } ;
72+ statusCode : number ;
7273 body : QueryCopyrightResponseBody ;
7374 static names ( ) : { [ key : string ] : string } {
7475 return {
7576 headers : 'headers' ,
77+ statusCode : 'statusCode' ,
7678 body : 'body' ,
7779 } ;
7880 }
7981
8082 static types ( ) : { [ key : string ] : any } {
8183 return {
8284 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
85+ statusCode : 'number' ,
8386 body : QueryCopyrightResponseBody ,
8487 } ;
8588 }
@@ -138,17 +141,20 @@ export class QueryCopyrightExtractResponseBody extends $tea.Model {
138141
139142export class QueryCopyrightExtractResponse extends $tea . Model {
140143 headers : { [ key : string ] : string } ;
144+ statusCode : number ;
141145 body : QueryCopyrightExtractResponseBody ;
142146 static names ( ) : { [ key : string ] : string } {
143147 return {
144148 headers : 'headers' ,
149+ statusCode : 'statusCode' ,
145150 body : 'body' ,
146151 } ;
147152 }
148153
149154 static types ( ) : { [ key : string ] : any } {
150155 return {
151156 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
157+ statusCode : 'number' ,
152158 body : QueryCopyrightExtractResponseBody ,
153159 } ;
154160 }
@@ -210,17 +216,20 @@ export class QueryTraceAbResponseBody extends $tea.Model {
210216
211217export class QueryTraceAbResponse extends $tea . Model {
212218 headers : { [ key : string ] : string } ;
219+ statusCode : number ;
213220 body : QueryTraceAbResponseBody ;
214221 static names ( ) : { [ key : string ] : string } {
215222 return {
216223 headers : 'headers' ,
224+ statusCode : 'statusCode' ,
217225 body : 'body' ,
218226 } ;
219227 }
220228
221229 static types ( ) : { [ key : string ] : any } {
222230 return {
223231 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
232+ statusCode : 'number' ,
224233 body : QueryTraceAbResponseBody ,
225234 } ;
226235 }
@@ -279,17 +288,20 @@ export class QueryTraceExtractResponseBody extends $tea.Model {
279288
280289export class QueryTraceExtractResponse extends $tea . Model {
281290 headers : { [ key : string ] : string } ;
291+ statusCode : number ;
282292 body : QueryTraceExtractResponseBody ;
283293 static names ( ) : { [ key : string ] : string } {
284294 return {
285295 headers : 'headers' ,
296+ statusCode : 'statusCode' ,
286297 body : 'body' ,
287298 } ;
288299 }
289300
290301 static types ( ) : { [ key : string ] : any } {
291302 return {
292303 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
304+ statusCode : 'number' ,
293305 body : QueryTraceExtractResponseBody ,
294306 } ;
295307 }
@@ -366,17 +378,20 @@ export class QueryTraceMuResponseBody extends $tea.Model {
366378
367379export class QueryTraceMuResponse extends $tea . Model {
368380 headers : { [ key : string ] : string } ;
381+ statusCode : number ;
369382 body : QueryTraceMuResponseBody ;
370383 static names ( ) : { [ key : string ] : string } {
371384 return {
372385 headers : 'headers' ,
386+ statusCode : 'statusCode' ,
373387 body : 'body' ,
374388 } ;
375389 }
376390
377391 static types ( ) : { [ key : string ] : any } {
378392 return {
379393 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
394+ statusCode : 'number' ,
380395 body : QueryTraceMuResponseBody ,
381396 } ;
382397 }
@@ -444,17 +459,20 @@ export class SubmitCopyrightExtractResponseBody extends $tea.Model {
444459
445460export class SubmitCopyrightExtractResponse extends $tea . Model {
446461 headers : { [ key : string ] : string } ;
462+ statusCode : number ;
447463 body : SubmitCopyrightExtractResponseBody ;
448464 static names ( ) : { [ key : string ] : string } {
449465 return {
450466 headers : 'headers' ,
467+ statusCode : 'statusCode' ,
451468 body : 'body' ,
452469 } ;
453470 }
454471
455472 static types ( ) : { [ key : string ] : any } {
456473 return {
457474 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
475+ statusCode : 'number' ,
458476 body : SubmitCopyrightExtractResponseBody ,
459477 } ;
460478 }
@@ -475,6 +493,7 @@ export class SubmitCopyrightJobRequest extends $tea.Model {
475493 totalTime ?: number ;
476494 url ?: string ;
477495 userData ?: string ;
496+ visibleMessage ?: string ;
478497 static names ( ) : { [ key : string ] : string } {
479498 return {
480499 callBack : 'CallBack' ,
@@ -487,6 +506,7 @@ export class SubmitCopyrightJobRequest extends $tea.Model {
487506 totalTime : 'TotalTime' ,
488507 url : 'Url' ,
489508 userData : 'UserData' ,
509+ visibleMessage : 'VisibleMessage' ,
490510 } ;
491511 }
492512
@@ -502,6 +522,7 @@ export class SubmitCopyrightJobRequest extends $tea.Model {
502522 totalTime : 'number' ,
503523 url : 'string' ,
504524 userData : 'string' ,
525+ visibleMessage : 'string' ,
505526 } ;
506527 }
507528
@@ -540,17 +561,20 @@ export class SubmitCopyrightJobResponseBody extends $tea.Model {
540561
541562export class SubmitCopyrightJobResponse extends $tea . Model {
542563 headers : { [ key : string ] : string } ;
564+ statusCode : number ;
543565 body : SubmitCopyrightJobResponseBody ;
544566 static names ( ) : { [ key : string ] : string } {
545567 return {
546568 headers : 'headers' ,
569+ statusCode : 'statusCode' ,
547570 body : 'body' ,
548571 } ;
549572 }
550573
551574 static types ( ) : { [ key : string ] : any } {
552575 return {
553576 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
577+ statusCode : 'number' ,
554578 body : SubmitCopyrightJobResponseBody ,
555579 } ;
556580 }
@@ -621,17 +645,20 @@ export class SubmitImageCopyrightResponseBody extends $tea.Model {
621645
622646export class SubmitImageCopyrightResponse extends $tea . Model {
623647 headers : { [ key : string ] : string } ;
648+ statusCode : number ;
624649 body : SubmitImageCopyrightResponseBody ;
625650 static names ( ) : { [ key : string ] : string } {
626651 return {
627652 headers : 'headers' ,
653+ statusCode : 'statusCode' ,
628654 body : 'body' ,
629655 } ;
630656 }
631657
632658 static types ( ) : { [ key : string ] : any } {
633659 return {
634660 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
661+ statusCode : 'number' ,
635662 body : SubmitImageCopyrightResponseBody ,
636663 } ;
637664 }
@@ -714,17 +741,20 @@ export class SubmitTraceAbResponseBody extends $tea.Model {
714741
715742export class SubmitTraceAbResponse extends $tea . Model {
716743 headers : { [ key : string ] : string } ;
744+ statusCode : number ;
717745 body : SubmitTraceAbResponseBody ;
718746 static names ( ) : { [ key : string ] : string } {
719747 return {
720748 headers : 'headers' ,
749+ statusCode : 'statusCode' ,
721750 body : 'body' ,
722751 } ;
723752 }
724753
725754 static types ( ) : { [ key : string ] : any } {
726755 return {
727756 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
757+ statusCode : 'number' ,
728758 body : SubmitTraceAbResponseBody ,
729759 } ;
730760 }
@@ -792,17 +822,20 @@ export class SubmitTraceExtractResponseBody extends $tea.Model {
792822
793823export class SubmitTraceExtractResponse extends $tea . Model {
794824 headers : { [ key : string ] : string } ;
825+ statusCode : number ;
795826 body : SubmitTraceExtractResponseBody ;
796827 static names ( ) : { [ key : string ] : string } {
797828 return {
798829 headers : 'headers' ,
830+ statusCode : 'statusCode' ,
799831 body : 'body' ,
800832 } ;
801833 }
802834
803835 static types ( ) : { [ key : string ] : any } {
804836 return {
805837 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
838+ statusCode : 'number' ,
806839 body : SubmitTraceExtractResponseBody ,
807840 } ;
808841 }
@@ -870,17 +903,20 @@ export class SubmitTracemuResponseBody extends $tea.Model {
870903
871904export class SubmitTracemuResponse extends $tea . Model {
872905 headers : { [ key : string ] : string } ;
906+ statusCode : number ;
873907 body : SubmitTracemuResponseBody ;
874908 static names ( ) : { [ key : string ] : string } {
875909 return {
876910 headers : 'headers' ,
911+ statusCode : 'statusCode' ,
877912 body : 'body' ,
878913 } ;
879914 }
880915
881916 static types ( ) : { [ key : string ] : any } {
882917 return {
883918 headers : { 'type' : 'map' , 'keyType' : 'string' , 'valueType' : 'string' } ,
919+ statusCode : 'number' ,
884920 body : SubmitTracemuResponseBody ,
885921 } ;
886922 }
@@ -1563,6 +1599,10 @@ export default class Client extends OpenApi {
15631599 body [ "UserData" ] = request . userData ;
15641600 }
15651601
1602+ if ( ! Util . isUnset ( request . visibleMessage ) ) {
1603+ body [ "VisibleMessage" ] = request . visibleMessage ;
1604+ }
1605+
15661606 let req = new $OpenApi . OpenApiRequest ( {
15671607 headers : headers ,
15681608 body : OpenApiUtil . parseToMap ( body ) ,
0 commit comments