@@ -905,7 +905,7 @@ public okhttp3.Call executeAsync(final ApiCallback<CreateFeedPostPublic200Respon
905905 public APIcreateFeedPostPublicRequest createFeedPostPublic (String tenantId , CreateFeedPostParams createFeedPostParams ) {
906906 return new APIcreateFeedPostPublicRequest (tenantId , createFeedPostParams );
907907 }
908- private okhttp3 .Call deleteCommentPublicCall (String tenantId , String commentId , String broadcastId , String editKey , final ApiCallback _callback ) throws ApiException {
908+ private okhttp3 .Call deleteCommentPublicCall (String tenantId , String commentId , String broadcastId , String editKey , String sso , final ApiCallback _callback ) throws ApiException {
909909 String basePath = null ;
910910 // Operation Servers
911911 String [] localBasePaths = new String [] { };
@@ -940,6 +940,10 @@ private okhttp3.Call deleteCommentPublicCall(String tenantId, String commentId,
940940 localVarQueryParams .addAll (localVarApiClient .parameterToPair ("editKey" , editKey ));
941941 }
942942
943+ if (sso != null ) {
944+ localVarQueryParams .addAll (localVarApiClient .parameterToPair ("sso" , sso ));
945+ }
946+
943947 final String [] localVarAccepts = {
944948 "application/json"
945949 };
@@ -960,7 +964,7 @@ private okhttp3.Call deleteCommentPublicCall(String tenantId, String commentId,
960964 }
961965
962966 @ SuppressWarnings ("rawtypes" )
963- private okhttp3 .Call deleteCommentPublicValidateBeforeCall (String tenantId , String commentId , String broadcastId , String editKey , final ApiCallback _callback ) throws ApiException {
967+ private okhttp3 .Call deleteCommentPublicValidateBeforeCall (String tenantId , String commentId , String broadcastId , String editKey , String sso , final ApiCallback _callback ) throws ApiException {
964968 // verify the required parameter 'tenantId' is set
965969 if (tenantId == null ) {
966970 throw new ApiException ("Missing the required parameter 'tenantId' when calling deleteCommentPublic(Async)" );
@@ -976,20 +980,20 @@ private okhttp3.Call deleteCommentPublicValidateBeforeCall(String tenantId, Stri
976980 throw new ApiException ("Missing the required parameter 'broadcastId' when calling deleteCommentPublic(Async)" );
977981 }
978982
979- return deleteCommentPublicCall (tenantId , commentId , broadcastId , editKey , _callback );
983+ return deleteCommentPublicCall (tenantId , commentId , broadcastId , editKey , sso , _callback );
980984
981985 }
982986
983987
984- private ApiResponse <DeleteCommentPublic200Response > deleteCommentPublicWithHttpInfo (String tenantId , String commentId , String broadcastId , String editKey ) throws ApiException {
985- okhttp3 .Call localVarCall = deleteCommentPublicValidateBeforeCall (tenantId , commentId , broadcastId , editKey , null );
988+ private ApiResponse <DeleteCommentPublic200Response > deleteCommentPublicWithHttpInfo (String tenantId , String commentId , String broadcastId , String editKey , String sso ) throws ApiException {
989+ okhttp3 .Call localVarCall = deleteCommentPublicValidateBeforeCall (tenantId , commentId , broadcastId , editKey , sso , null );
986990 Type localVarReturnType = new TypeToken <DeleteCommentPublic200Response >(){}.getType ();
987991 return localVarApiClient .execute (localVarCall , localVarReturnType );
988992 }
989993
990- private okhttp3 .Call deleteCommentPublicAsync (String tenantId , String commentId , String broadcastId , String editKey , final ApiCallback <DeleteCommentPublic200Response > _callback ) throws ApiException {
994+ private okhttp3 .Call deleteCommentPublicAsync (String tenantId , String commentId , String broadcastId , String editKey , String sso , final ApiCallback <DeleteCommentPublic200Response > _callback ) throws ApiException {
991995
992- okhttp3 .Call localVarCall = deleteCommentPublicValidateBeforeCall (tenantId , commentId , broadcastId , editKey , _callback );
996+ okhttp3 .Call localVarCall = deleteCommentPublicValidateBeforeCall (tenantId , commentId , broadcastId , editKey , sso , _callback );
993997 Type localVarReturnType = new TypeToken <DeleteCommentPublic200Response >(){}.getType ();
994998 localVarApiClient .executeAsync (localVarCall , localVarReturnType , _callback );
995999 return localVarCall ;
@@ -1000,6 +1004,7 @@ public class APIdeleteCommentPublicRequest {
10001004 private final String commentId ;
10011005 private final String broadcastId ;
10021006 private String editKey ;
1007+ private String sso ;
10031008
10041009 private APIdeleteCommentPublicRequest (String tenantId , String commentId , String broadcastId ) {
10051010 this .tenantId = tenantId ;
@@ -1017,6 +1022,16 @@ public APIdeleteCommentPublicRequest editKey(String editKey) {
10171022 return this ;
10181023 }
10191024
1025+ /**
1026+ * Set sso
1027+ * @param sso (optional)
1028+ * @return APIdeleteCommentPublicRequest
1029+ */
1030+ public APIdeleteCommentPublicRequest sso (String sso ) {
1031+ this .sso = sso ;
1032+ return this ;
1033+ }
1034+
10201035 /**
10211036 * Build call for deleteCommentPublic
10221037 * @param _callback ApiCallback API callback
@@ -1030,7 +1045,7 @@ public APIdeleteCommentPublicRequest editKey(String editKey) {
10301045 </table>
10311046 */
10321047 public okhttp3 .Call buildCall (final ApiCallback _callback ) throws ApiException {
1033- return deleteCommentPublicCall (tenantId , commentId , broadcastId , editKey , _callback );
1048+ return deleteCommentPublicCall (tenantId , commentId , broadcastId , editKey , sso , _callback );
10341049 }
10351050
10361051 /**
@@ -1045,7 +1060,7 @@ public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
10451060 </table>
10461061 */
10471062 public DeleteCommentPublic200Response execute () throws ApiException {
1048- ApiResponse <DeleteCommentPublic200Response > localVarResp = deleteCommentPublicWithHttpInfo (tenantId , commentId , broadcastId , editKey );
1063+ ApiResponse <DeleteCommentPublic200Response > localVarResp = deleteCommentPublicWithHttpInfo (tenantId , commentId , broadcastId , editKey , sso );
10491064 return localVarResp .getData ();
10501065 }
10511066
@@ -1061,7 +1076,7 @@ public DeleteCommentPublic200Response execute() throws ApiException {
10611076 </table>
10621077 */
10631078 public ApiResponse <DeleteCommentPublic200Response > executeWithHttpInfo () throws ApiException {
1064- return deleteCommentPublicWithHttpInfo (tenantId , commentId , broadcastId , editKey );
1079+ return deleteCommentPublicWithHttpInfo (tenantId , commentId , broadcastId , editKey , sso );
10651080 }
10661081
10671082 /**
@@ -1077,7 +1092,7 @@ public ApiResponse<DeleteCommentPublic200Response> executeWithHttpInfo() throws
10771092 </table>
10781093 */
10791094 public okhttp3 .Call executeAsync (final ApiCallback <DeleteCommentPublic200Response > _callback ) throws ApiException {
1080- return deleteCommentPublicAsync (tenantId , commentId , broadcastId , editKey , _callback );
1095+ return deleteCommentPublicAsync (tenantId , commentId , broadcastId , editKey , sso , _callback );
10811096 }
10821097 }
10831098
0 commit comments