Skip to content

Commit

Permalink
SDK-2372: Set property name to match JSON property name for requireme…
Browse files Browse the repository at this point in the history
…ntsNotMetDetails
  • Loading branch information
MrBurtyyy committed Dec 11, 2023
1 parent fa27758 commit fc46c63
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ public class IdentityProfileFailureResponse {
private String reasonCode;

@JsonProperty("requirements_not_met_details")
private List<RequirementNotMetDetailsResponse> requirementNotMetDetails;
private List<RequirementNotMetDetailsResponse> requirementsNotMetDetails;

public String getReasonCode() {
return reasonCode;
}

public List<RequirementNotMetDetailsResponse> getRequirementNotMetDetails() {
return requirementNotMetDetails;
public List<RequirementNotMetDetailsResponse> getRequirementsNotMetDetails() {
return requirementsNotMetDetails;
}

}

0 comments on commit fc46c63

Please sign in to comment.