001package ca.cdr.api.priorauth;
002
003import com.fasterxml.jackson.annotation.JsonProperty;
004import io.swagger.v3.oas.annotations.media.Schema;
005
006@Schema(name = "CrdApplyProcessorConfig", description = "Configs related to CrdApplyProcessor")
007public class CrdApplyProcessorConfig {
008
009        @Schema(description = "Payer source label used in CDS hooks response card as source.label")
010        @JsonProperty("payerSourceLabel")
011        private String myPayerSourceLabel;
012
013        @Schema(description = "Payer source URL used in CDS hooks response card as source.url")
014        @JsonProperty("payerSourceUrl")
015        private String myPayerSourceUrl;
016
017        @Schema(description = "Coverage identifier system used for searching identifier in Provider coverage")
018        @JsonProperty("coverageIdentifierSystem")
019        private String myCoverageIdentifierSystem;
020
021        public String getPayerSourceLabel() {
022                return myPayerSourceLabel;
023        }
024
025        public void setPayerSourceLabel(String thePayerSourceLabel) {
026                myPayerSourceLabel = thePayerSourceLabel;
027        }
028
029        public String getPayerSourceUrl() {
030                return myPayerSourceUrl;
031        }
032
033        public void setPayerSourceUrl(String thePayerSourceUrl) {
034                myPayerSourceUrl = thePayerSourceUrl;
035        }
036
037        public String getCoverageIdentifierSystem() {
038                return myCoverageIdentifierSystem;
039        }
040
041        public void setCoverageIdentifierSystem(String theCoverageIdentifierSystem) {
042                myCoverageIdentifierSystem = theCoverageIdentifierSystem;
043        }
044}