@@ -412,7 +412,7 @@ public ApiResponse< PtsV2ModifyBillingAgreementPost201Response > BillingAgreemen
412412 }
413413
414414 return new ApiResponse < PtsV2ModifyBillingAgreementPost201Response > ( localVarStatusCode ,
415- localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
415+ localVarResponse . Headers . GroupBy ( h => h . Name ) . ToDictionary ( x => x . Key , x => string . Join ( ", " , x . Select ( h => h . Value . ToString ( ) ) ) ) ,
416416 ( PtsV2ModifyBillingAgreementPost201Response ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( PtsV2ModifyBillingAgreementPost201Response ) ) ) ; // Return statement
417417 }
418418
@@ -526,7 +526,7 @@ public async System.Threading.Tasks.Task<ApiResponse<PtsV2ModifyBillingAgreement
526526 }
527527
528528 return new ApiResponse < PtsV2ModifyBillingAgreementPost201Response > ( localVarStatusCode ,
529- localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
529+ localVarResponse . Headers . GroupBy ( h => h . Name ) . ToDictionary ( x => x . Key , x => string . Join ( ", " , x . Select ( h => h . Value . ToString ( ) ) ) ) ,
530530 ( PtsV2ModifyBillingAgreementPost201Response ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( PtsV2ModifyBillingAgreementPost201Response ) ) ) ; // Return statement
531531 }
532532 /// <summary>
@@ -638,7 +638,7 @@ public ApiResponse< PtsV2CreditsPost201Response1 > BillingAgreementsIntimationWi
638638 }
639639
640640 return new ApiResponse < PtsV2CreditsPost201Response1 > ( localVarStatusCode ,
641- localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
641+ localVarResponse . Headers . GroupBy ( h => h . Name ) . ToDictionary ( x => x . Key , x => string . Join ( ", " , x . Select ( h => h . Value . ToString ( ) ) ) ) ,
642642 ( PtsV2CreditsPost201Response1 ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( PtsV2CreditsPost201Response1 ) ) ) ; // Return statement
643643 }
644644
@@ -752,7 +752,7 @@ public async System.Threading.Tasks.Task<ApiResponse<PtsV2CreditsPost201Response
752752 }
753753
754754 return new ApiResponse < PtsV2CreditsPost201Response1 > ( localVarStatusCode ,
755- localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
755+ localVarResponse . Headers . GroupBy ( h => h . Name ) . ToDictionary ( x => x . Key , x => string . Join ( ", " , x . Select ( h => h . Value . ToString ( ) ) ) ) ,
756756 ( PtsV2CreditsPost201Response1 ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( PtsV2CreditsPost201Response1 ) ) ) ; // Return statement
757757 }
758758 /// <summary>
@@ -851,7 +851,7 @@ public ApiResponse< PtsV2CreateBillingAgreementPost201Response > BillingAgreemen
851851 }
852852
853853 return new ApiResponse < PtsV2CreateBillingAgreementPost201Response > ( localVarStatusCode ,
854- localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
854+ localVarResponse . Headers . GroupBy ( h => h . Name ) . ToDictionary ( x => x . Key , x => string . Join ( ", " , x . Select ( h => h . Value . ToString ( ) ) ) ) ,
855855 ( PtsV2CreateBillingAgreementPost201Response ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( PtsV2CreateBillingAgreementPost201Response ) ) ) ; // Return statement
856856 }
857857
@@ -952,7 +952,7 @@ public async System.Threading.Tasks.Task<ApiResponse<PtsV2CreateBillingAgreement
952952 }
953953
954954 return new ApiResponse < PtsV2CreateBillingAgreementPost201Response > ( localVarStatusCode ,
955- localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
955+ localVarResponse . Headers . GroupBy ( h => h . Name ) . ToDictionary ( x => x . Key , x => string . Join ( ", " , x . Select ( h => h . Value . ToString ( ) ) ) ) ,
956956 ( PtsV2CreateBillingAgreementPost201Response ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( PtsV2CreateBillingAgreementPost201Response ) ) ) ; // Return statement
957957 }
958958 }
0 commit comments