Skip to content

Commit

Permalink
Added JsonIgnoreProperties for kyc auth and exchange requests (mosip#269
Browse files Browse the repository at this point in the history
)

Signed-off-by: piyush-shukla03_infosys <[email protected]>
Co-authored-by: piyush-shukla03_infosys <[email protected]>
Signed-off-by: kaifk468 <[email protected]>
  • Loading branch information
2 people authored and kaifk468 committed Dec 16, 2024
1 parent 2f3b96d commit 993d8f3
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 993d8f3

Please sign in to comment.