@@ -213,13 +213,13 @@ public String toString() {
213213 StringBuilder sb = new StringBuilder ();
214214 sb .append ("class AuthReversalRequest {\n " );
215215
216- sb .append (" clientReferenceInformation: " ).append (toIndentedString (clientReferenceInformation )).append ("\n " );
217- sb .append (" reversalInformation: " ).append (toIndentedString (reversalInformation )).append ("\n " );
218- sb .append (" processingInformation: " ).append (toIndentedString (processingInformation )).append ("\n " );
219- sb .append (" orderInformation: " ).append (toIndentedString (orderInformation )).append ("\n " );
220- sb .append (" pointOfSaleInformation: " ).append (toIndentedString (pointOfSaleInformation )).append ("\n " );
221- sb .append (" paymentInformation: " ).append (toIndentedString (paymentInformation )).append ("\n " );
222- sb .append (" processorInformation: " ).append (toIndentedString (processorInformation )).append ("\n " );
216+ if ( clientReferenceInformation != null ) sb .append (" clientReferenceInformation: " ).append (toIndentedString (clientReferenceInformation )).append ("\n " );
217+ if ( reversalInformation != null ) sb .append (" reversalInformation: " ).append (toIndentedString (reversalInformation )).append ("\n " );
218+ if ( processingInformation != null ) sb .append (" processingInformation: " ).append (toIndentedString (processingInformation )).append ("\n " );
219+ if ( orderInformation != null ) sb .append (" orderInformation: " ).append (toIndentedString (orderInformation )).append ("\n " );
220+ if ( pointOfSaleInformation != null ) sb .append (" pointOfSaleInformation: " ).append (toIndentedString (pointOfSaleInformation )).append ("\n " );
221+ if ( paymentInformation != null ) sb .append (" paymentInformation: " ).append (toIndentedString (paymentInformation )).append ("\n " );
222+ if ( processorInformation != null ) sb .append (" processorInformation: " ).append (toIndentedString (processorInformation )).append ("\n " );
223223 sb .append ("}" );
224224 return sb .toString ();
225225 }
@@ -230,10 +230,10 @@ public String toString() {
230230 */
231231 private String toIndentedString (java .lang .Object o ) {
232232 if (o == null ) {
233- return "null" ;
233+ // return "null";
234234 }
235235 return o .toString ().replace ("\n " , "\n " );
236236 }
237-
237+
238238}
239239
0 commit comments