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: ase-101 <[email protected]>
Signed-off-by: Chandra Keshav Mishra <[email protected]>
Signed-off-by: Zeeshan Mehboob <[email protected]>
  • Loading branch information
2 people authored and zesu22 committed Nov 25, 2024
1 parent 27b74b0 commit 889fb1b
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 889fb1b

Please sign in to comment.