athena_health 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/athena_health/patient.rb +88 -54
- data/lib/athena_health/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ee9010e37827822d73699a86a4676ebe8492fd5
|
4
|
+
data.tar.gz: 1644e9bdfad763562230dc2a75e84804e01af564
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f73e8dee3a7bdd769541d3cac218b84742b4ca4f6502d3b118659a416ee015a57d883c0b4fee22db6761d700974213c027c5dc5046a8b4f54994fd991544977
|
7
|
+
data.tar.gz: fa8bd8b705025dcbb7814b3293521ad8cb8a38d5541752a9f8ff635fefe00aafdc078e480ebf4478179b0e3694cccbb3bebffef36548a0e9bd0443302714a867
|
@@ -4,59 +4,93 @@ module AthenaHealth
|
|
4
4
|
class Patient < BaseModel
|
5
5
|
include ActiveModel::Model
|
6
6
|
|
7
|
-
attribute :email,
|
8
|
-
attribute :occupationcode,
|
9
|
-
attribute :departmentid,
|
10
|
-
attribute :homephone,
|
11
|
-
attribute :
|
12
|
-
attribute :
|
13
|
-
attribute :
|
14
|
-
attribute :
|
15
|
-
attribute :
|
16
|
-
attribute :
|
17
|
-
attribute :
|
18
|
-
attribute :
|
19
|
-
attribute :
|
20
|
-
attribute :
|
21
|
-
attribute :
|
22
|
-
attribute :
|
23
|
-
attribute :
|
24
|
-
attribute :
|
25
|
-
attribute :
|
26
|
-
attribute :
|
27
|
-
attribute :
|
28
|
-
attribute :
|
29
|
-
attribute :
|
30
|
-
attribute :
|
31
|
-
attribute :
|
32
|
-
attribute :
|
33
|
-
attribute :
|
34
|
-
attribute :
|
35
|
-
attribute :
|
36
|
-
attribute :
|
37
|
-
attribute :
|
38
|
-
attribute :
|
39
|
-
attribute :
|
40
|
-
attribute :
|
41
|
-
attribute :
|
42
|
-
attribute :
|
43
|
-
attribute :
|
44
|
-
attribute :
|
45
|
-
attribute :
|
46
|
-
attribute :
|
47
|
-
attribute :
|
48
|
-
attribute :
|
49
|
-
attribute :
|
50
|
-
attribute :
|
51
|
-
attribute :
|
52
|
-
attribute :
|
53
|
-
attribute :
|
54
|
-
attribute :
|
55
|
-
attribute :
|
56
|
-
attribute :
|
57
|
-
attribute :
|
58
|
-
attribute :
|
59
|
-
attribute :
|
60
|
-
attribute :
|
7
|
+
attribute :email, String
|
8
|
+
attribute :occupationcode, String
|
9
|
+
attribute :departmentid, Integer
|
10
|
+
attribute :homephone, String
|
11
|
+
attribute :homebound, Boolean
|
12
|
+
attribute :guarantorstate, String
|
13
|
+
attribute :portalaccessgiven, Boolean
|
14
|
+
attribute :driverslicense, Boolean
|
15
|
+
attribute :workphone, String
|
16
|
+
attribute :ethnicitycode, String
|
17
|
+
attribute :industrycode, String
|
18
|
+
attribute :contacthomephone, String
|
19
|
+
attribute :contactrelationship, String
|
20
|
+
attribute :contactname, String
|
21
|
+
attribute :contactpreference_appointment_sms, Boolean
|
22
|
+
attribute :contactpreference_appointment_email, Boolean
|
23
|
+
attribute :contactpreference_billing_phone, Boolean
|
24
|
+
attribute :contactpreference_announcement_phone, Boolean
|
25
|
+
attribute :contactpreference_lab_sms, Boolean
|
26
|
+
attribute :contactpreference_lab_phone, Boolean
|
27
|
+
attribute :contactpreference_lab_email, Boolean
|
28
|
+
attribute :contactpreference_announcement_sms, Boolean
|
29
|
+
attribute :contactpreference_announcement_email, Boolean
|
30
|
+
attribute :contactpreference_appointment_phone, Boolean
|
31
|
+
attribute :contactpreference_billing_sms, Boolean
|
32
|
+
attribute :contactpreference_billing_email, Boolean
|
33
|
+
attribute :firstappointment, String
|
34
|
+
attribute :lastappointment, String
|
35
|
+
attribute :patientphotourl, String
|
36
|
+
attribute :mobilecarrierid, Integer
|
37
|
+
attribute :guarantorssn, String
|
38
|
+
attribute :guarantordob, String
|
39
|
+
attribute :zip, String
|
40
|
+
attribute :guarantoraddresssameaspatient, Boolean
|
41
|
+
attribute :employerphone, String
|
42
|
+
attribute :contactmobilephone, String
|
43
|
+
attribute :contactpreference, String
|
44
|
+
attribute :nextkinphone, String
|
45
|
+
attribute :nextkinrelationship, String
|
46
|
+
attribute :nextkinname, String
|
47
|
+
attribute :portaltermsonfile, Boolean
|
48
|
+
attribute :status, String
|
49
|
+
attribute :lastname, String
|
50
|
+
attribute :guarantorfirstname, String
|
51
|
+
attribute :city, String
|
52
|
+
attribute :ssn, String
|
53
|
+
attribute :guarantoremail, String
|
54
|
+
attribute :guarantorcity, String
|
55
|
+
attribute :guarantorzip, String
|
56
|
+
attribute :privacyinformationverified, Boolean
|
57
|
+
attribute :primarydepartmentid, Integer
|
58
|
+
attribute :balances, Array[Balance]
|
59
|
+
attribute :race, Array
|
60
|
+
attribute :racename, String
|
61
|
+
attribute :language6392code, String
|
62
|
+
attribute :primaryproviderid, Integer
|
63
|
+
attribute :povertylevelincomedeclined, Boolean
|
64
|
+
attribute :povertylevelfamilysizedeclined, Boolean
|
65
|
+
attribute :patientphoto, Boolean
|
66
|
+
attribute :caresummarydeliverypreference, Boolean
|
67
|
+
attribute :guarantorlastname, Boolean
|
68
|
+
attribute :suffix, String
|
69
|
+
attribute :firstname, String
|
70
|
+
attribute :middlename, String
|
71
|
+
attribute :preferredname, String
|
72
|
+
attribute :maritalstatus, String
|
73
|
+
attribute :maritalstatusname, String
|
74
|
+
attribute :sex, String
|
75
|
+
attribute :hasmobile, Boolean
|
76
|
+
attribute :mobilephone, String
|
77
|
+
attribute :onlinestatementonly, Boolean
|
78
|
+
attribute :notes, String
|
79
|
+
attribute :guarantorcountrycode, String
|
80
|
+
attribute :state, String
|
81
|
+
attribute :patientid, Integer
|
82
|
+
attribute :referralsourceid, Integer
|
83
|
+
attribute :dob, String
|
84
|
+
attribute :guarantorrelationshiptopatient, Integer
|
85
|
+
attribute :address1, String
|
86
|
+
attribute :address2, String
|
87
|
+
attribute :guarantorphone, String
|
88
|
+
attribute :countrycode, String
|
89
|
+
attribute :guarantoraddress1, String
|
90
|
+
attribute :guarantoraddress2, String
|
91
|
+
attribute :consenttocall, Boolean
|
92
|
+
attribute :consenttotext, Boolean
|
93
|
+
attribute :countrycode3166, String
|
94
|
+
attribute :guarantorcountrycode3166, String
|
61
95
|
end
|
62
96
|
end
|