Skip to content

Commit

Permalink
MAT-6167: Update java-models for the measure definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Dec 21, 2023
1 parent a120737 commit 825e843
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ public class MeasureMetaData {
private boolean experimental;
private String transmissionFormat;
private String supplementalDataElements;

private List<QDMMeasureDefinition> qdmMeasureDefinition;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package gov.cms.madie.models.measure;

import java.util.List;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@Builder(toBuilder=true)
@NoArgsConstructor
@AllArgsConstructor
public class QDMMeasureDefinition {
private String term;
private String definition;
}

0 comments on commit 825e843

Please sign in to comment.