Skip to content

Commit

Permalink
fix: Removing field mandatory for onboarding (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-putzu authored Apr 29, 2024
1 parent f7d0809 commit fb23c2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class OnboardingData {
private InstitutionUpdate institutionUpdate;
private InstitutionType institutionType;
private String origin;
private String ivassCode;
private String pricingPlan;
private RootParent rootParent;
private Boolean sendCompleteOnboardingEmail;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

@Data
public class InstitutionLocationDataDto {
@ApiModelProperty(value = "${swagger.external_api.institutions.model.city}", required = true)
@ApiModelProperty(value = "${swagger.external_api.institutions.model.city}")
private String city;

@ApiModelProperty(value = "${swagger.external_api.institutions.model.county}", required = true)
@ApiModelProperty(value = "${swagger.external_api.institutions.model.county}")
private String county;

@ApiModelProperty(value = "${swagger.external_api.institutions.model.country}", required = true)
@ApiModelProperty(value = "${swagger.external_api.institutions.model.country}")
private String country;

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ public class OnboardingProductDto {
@ApiModelProperty(value = "${swagger.external_api.institutions.model.origin}")
private String origin;

@ApiModelProperty(value = "${swagger.external_api.institutions.model.originId}")
private String ivassCode;

@ApiModelProperty(value = "${swagger.external_api.institutions.model.pricingPlan}")
private String pricingPlan;

Expand Down

0 comments on commit fb23c2f

Please sign in to comment.