-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
80 changed files
with
608 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
apps/bfd-data-npi/src/main/java/gov/cms/bfd/data/npi/dto/NPIData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package gov.cms.bfd.data.npi.dto; | ||
|
||
import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
/** DTO used to supply the server with NPI enrichment information. */ | ||
@Builder | ||
@Getter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@JsonInclude(NON_NULL) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class NPIData { | ||
/** Provider or Org npi. */ | ||
String npi; | ||
|
||
/** Entity Type. Will be 1 for Provider, or 2 for Organization. */ | ||
String entityTypeCode; | ||
|
||
/** Organization name. */ | ||
String providerOrganizationName; | ||
|
||
/** Taxonomy code. */ | ||
String taxonomyCode; | ||
|
||
/** Taxonomy display. */ | ||
String taxonomyDisplay; | ||
|
||
/** Provider name prefix. */ | ||
String providerNamePrefix; | ||
|
||
/** Provider first name. */ | ||
String providerFirstName; | ||
|
||
/** Provider middle name. */ | ||
String providerMiddleName; | ||
|
||
/** Provider last name. */ | ||
String providerLastName; | ||
|
||
/** Provider suffix. */ | ||
String providerNameSuffix; | ||
|
||
/** Provider credential. */ | ||
String providerCredential; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.