Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

package gov.va.med.ars.model.request;

import com.fasterxml.jackson.annotation.JsonInclude;

public class Unmatched837Request {

@JsonInclude(JsonInclude.Include.NON_NULL)
String attachmentId;
@JsonInclude(JsonInclude.Include.NON_NULL)
String attachIdLx;
@JsonInclude(JsonInclude.Include.NON_NULL)
String unmatched837Id;

public String getAttachmentId() {
return attachmentId;
}

public void setAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
}

public String getUnmatched837Id() {
return unmatched837Id;
}

public void setUnmatched837Id(String unmatched837Id) {
this.unmatched837Id = unmatched837Id;
}

public String getAttachIdLx() {
return attachIdLx;
}

public void setAttachIdLx(String attachmentIdLx) {
this.attachIdLx = attachmentIdLx;
}

}