Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1. public class SendGridRecipientResponseDTO
  2. {
  3.     private final Integer error_count;
  4.     private final List<Integer> error_indices;
  5.     private final Integer new_count;
  6.     private final List<String> persisted_recipients;
  7.     private final Integer updated_count;
  8.     private final List<SendGridRecipientErrorResponseDTO> errors;
  9.  
  10.     public SendGridRecipientResponseDTO()
  11.     {
  12.         error_count = 0;
  13.         error_indices = new ArrayList<Integer>();
  14.         new_count = 0;
  15.         persisted_recipients = new ArrayList<String>();
  16.         updated_count = 0;
  17.         errors = new ArrayList<SendGridRecipientErrorResponseDTO>();
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement