Skip to content

Commit

Permalink
Expose additional errors on invite batch (#141)
Browse files Browse the repository at this point in the history
So we can see which users failed on the invite sent and which not
  • Loading branch information
aviadl authored Nov 4, 2024
1 parent 9d8937a commit 787a4bf
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.descope.model.user.response;

import java.util.List;
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
Expand All @@ -11,4 +12,5 @@
public class UsersBatchResponse {
private List<UserResponse> createdUsers;
private List<UserFailedResponse> failedUsers;
private Map<String, String> additionalErrors;
}

0 comments on commit 787a4bf

Please sign in to comment.