001package org.hl7.fhir.r5.utils.validation;
002
003import com.fasterxml.jackson.annotation.JsonProperty;
004
005public class BundleValidationRule {
006  @JsonProperty("rule")
007  private String rule;
008
009  @JsonProperty("profile")
010  private String profile;
011  private boolean checked;
012
013  @JsonProperty("rule")
014  public String getRule() {
015    return rule;
016  }
017
018  @JsonProperty("rule")
019  public BundleValidationRule setRule(String rule) {
020    this.rule = rule;
021    return this;
022  }
023
024  @JsonProperty("profile")
025  public String getProfile() {
026    return profile;
027  }
028
029  @JsonProperty("profile")
030  public BundleValidationRule setProfile(String profile) {
031    this.profile = profile;
032    return this;
033  }
034
035  public boolean isChecked() {
036    return checked;
037  }
038
039  public void setChecked(boolean checked) {
040    this.checked = checked;
041  }
042}