Skip to content

Commit

Permalink
Merge pull request #270 from ase-101/release-0.10.x
Browse files Browse the repository at this point in the history
INJICERT-434 Added JsonIgnoreProperties for kyc auth and exchange requests (#269)
  • Loading branch information
ckm007 authored Oct 7, 2024
2 parents b705171 + 6f343d8 commit 65a2a48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
*/
package io.mosip.esignet.mock.identitysystem.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;

import java.util.List;


@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class KycAuthRequestDto {

private String transactionId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@
package io.mosip.esignet.mock.identitysystem.dto;


import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;

import java.time.LocalDateTime;
import java.util.List;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class KycExchangeRequestDto {

private LocalDateTime requestDateTime;
Expand Down

0 comments on commit 65a2a48

Please sign in to comment.