@@ -2872,7 +2872,7 @@ public okhttp3.Call executeAsync(final ApiCallback<GetEventLog200Response> _call
28722872 public APIgetEventLogRequest getEventLog (String tenantId , String urlId , String userIdWS , Long startTime , Long endTime ) {
28732873 return new APIgetEventLogRequest (tenantId , urlId , userIdWS , startTime , endTime );
28742874 }
2875- private okhttp3 .Call getFeedPostsPublicCall (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , final ApiCallback _callback ) throws ApiException {
2875+ private okhttp3 .Call getFeedPostsPublicCall (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , Boolean includeUserInfo , final ApiCallback _callback ) throws ApiException {
28762876 String basePath = null ;
28772877 // Operation Servers
28782878 String [] localBasePaths = new String [] { };
@@ -2918,6 +2918,10 @@ private okhttp3.Call getFeedPostsPublicCall(String tenantId, String afterId, Int
29182918 localVarQueryParams .addAll (localVarApiClient .parameterToPair ("isCrawler" , isCrawler ));
29192919 }
29202920
2921+ if (includeUserInfo != null ) {
2922+ localVarQueryParams .addAll (localVarApiClient .parameterToPair ("includeUserInfo" , includeUserInfo ));
2923+ }
2924+
29212925 final String [] localVarAccepts = {
29222926 "application/json"
29232927 };
@@ -2938,26 +2942,26 @@ private okhttp3.Call getFeedPostsPublicCall(String tenantId, String afterId, Int
29382942 }
29392943
29402944 @ SuppressWarnings ("rawtypes" )
2941- private okhttp3 .Call getFeedPostsPublicValidateBeforeCall (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , final ApiCallback _callback ) throws ApiException {
2945+ private okhttp3 .Call getFeedPostsPublicValidateBeforeCall (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , Boolean includeUserInfo , final ApiCallback _callback ) throws ApiException {
29422946 // verify the required parameter 'tenantId' is set
29432947 if (tenantId == null ) {
29442948 throw new ApiException ("Missing the required parameter 'tenantId' when calling getFeedPostsPublic(Async)" );
29452949 }
29462950
2947- return getFeedPostsPublicCall (tenantId , afterId , limit , tags , sso , isCrawler , _callback );
2951+ return getFeedPostsPublicCall (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo , _callback );
29482952
29492953 }
29502954
29512955
2952- private ApiResponse <GetFeedPostsPublic200Response > getFeedPostsPublicWithHttpInfo (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler ) throws ApiException {
2953- okhttp3 .Call localVarCall = getFeedPostsPublicValidateBeforeCall (tenantId , afterId , limit , tags , sso , isCrawler , null );
2956+ private ApiResponse <GetFeedPostsPublic200Response > getFeedPostsPublicWithHttpInfo (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , Boolean includeUserInfo ) throws ApiException {
2957+ okhttp3 .Call localVarCall = getFeedPostsPublicValidateBeforeCall (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo , null );
29542958 Type localVarReturnType = new TypeToken <GetFeedPostsPublic200Response >(){}.getType ();
29552959 return localVarApiClient .execute (localVarCall , localVarReturnType );
29562960 }
29572961
2958- private okhttp3 .Call getFeedPostsPublicAsync (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , final ApiCallback <GetFeedPostsPublic200Response > _callback ) throws ApiException {
2962+ private okhttp3 .Call getFeedPostsPublicAsync (String tenantId , String afterId , Integer limit , List <String > tags , String sso , Boolean isCrawler , Boolean includeUserInfo , final ApiCallback <GetFeedPostsPublic200Response > _callback ) throws ApiException {
29592963
2960- okhttp3 .Call localVarCall = getFeedPostsPublicValidateBeforeCall (tenantId , afterId , limit , tags , sso , isCrawler , _callback );
2964+ okhttp3 .Call localVarCall = getFeedPostsPublicValidateBeforeCall (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo , _callback );
29612965 Type localVarReturnType = new TypeToken <GetFeedPostsPublic200Response >(){}.getType ();
29622966 localVarApiClient .executeAsync (localVarCall , localVarReturnType , _callback );
29632967 return localVarCall ;
@@ -2970,6 +2974,7 @@ public class APIgetFeedPostsPublicRequest {
29702974 private List <String > tags ;
29712975 private String sso ;
29722976 private Boolean isCrawler ;
2977+ private Boolean includeUserInfo ;
29732978
29742979 private APIgetFeedPostsPublicRequest (String tenantId ) {
29752980 this .tenantId = tenantId ;
@@ -3025,6 +3030,16 @@ public APIgetFeedPostsPublicRequest isCrawler(Boolean isCrawler) {
30253030 return this ;
30263031 }
30273032
3033+ /**
3034+ * Set includeUserInfo
3035+ * @param includeUserInfo (optional)
3036+ * @return APIgetFeedPostsPublicRequest
3037+ */
3038+ public APIgetFeedPostsPublicRequest includeUserInfo (Boolean includeUserInfo ) {
3039+ this .includeUserInfo = includeUserInfo ;
3040+ return this ;
3041+ }
3042+
30283043 /**
30293044 * Build call for getFeedPostsPublic
30303045 * @param _callback ApiCallback API callback
@@ -3038,7 +3053,7 @@ public APIgetFeedPostsPublicRequest isCrawler(Boolean isCrawler) {
30383053 </table>
30393054 */
30403055 public okhttp3 .Call buildCall (final ApiCallback _callback ) throws ApiException {
3041- return getFeedPostsPublicCall (tenantId , afterId , limit , tags , sso , isCrawler , _callback );
3056+ return getFeedPostsPublicCall (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo , _callback );
30423057 }
30433058
30443059 /**
@@ -3053,7 +3068,7 @@ public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
30533068 </table>
30543069 */
30553070 public GetFeedPostsPublic200Response execute () throws ApiException {
3056- ApiResponse <GetFeedPostsPublic200Response > localVarResp = getFeedPostsPublicWithHttpInfo (tenantId , afterId , limit , tags , sso , isCrawler );
3071+ ApiResponse <GetFeedPostsPublic200Response > localVarResp = getFeedPostsPublicWithHttpInfo (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo );
30573072 return localVarResp .getData ();
30583073 }
30593074
@@ -3069,7 +3084,7 @@ public GetFeedPostsPublic200Response execute() throws ApiException {
30693084 </table>
30703085 */
30713086 public ApiResponse <GetFeedPostsPublic200Response > executeWithHttpInfo () throws ApiException {
3072- return getFeedPostsPublicWithHttpInfo (tenantId , afterId , limit , tags , sso , isCrawler );
3087+ return getFeedPostsPublicWithHttpInfo (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo );
30733088 }
30743089
30753090 /**
@@ -3085,7 +3100,7 @@ public ApiResponse<GetFeedPostsPublic200Response> executeWithHttpInfo() throws A
30853100 </table>
30863101 */
30873102 public okhttp3 .Call executeAsync (final ApiCallback <GetFeedPostsPublic200Response > _callback ) throws ApiException {
3088- return getFeedPostsPublicAsync (tenantId , afterId , limit , tags , sso , isCrawler , _callback );
3103+ return getFeedPostsPublicAsync (tenantId , afterId , limit , tags , sso , isCrawler , includeUserInfo , _callback );
30893104 }
30903105 }
30913106
0 commit comments