icalia-sdk-event-core 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 787d455002d7b3363a853b784e2b4ce411ed25cad30ec4fd5081ddb2df3312a5
|
4
|
+
data.tar.gz: 162335fdb3231e77d636c429bdc2cc47b2bc6a41eff85acf93d86c7d4c765aa6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c16e5317a1c00c4d8f342a47187fc26f071fb9a381fa7545bfbf7c7bae5a01783b85f30924fb1964aab6a9a52c0240df1251eda5b768a2fddf8d37688d8c76b
|
7
|
+
data.tar.gz: b86d2ef17d2556fb3476442dda04c1bf95e7b1bb418a09f63353cf2176858059e88c71577210f47ca973771582a1a8f0ebd7421685e4c7c70cf7fd742c9ab5ee
|
@@ -8,7 +8,12 @@ module Icalia::Event
|
|
8
8
|
class DeserializablePerson < DeserializableResource
|
9
9
|
include DeserializableResourceTimestamps
|
10
10
|
|
11
|
-
|
11
|
+
attribute(:'full-name') { |value| Hash[full_name: value] }
|
12
|
+
attribute(:'given-name') { |value| Hash[given_name: value] }
|
13
|
+
attribute(:'family-name') { |value| Hash[family_name: value] }
|
14
|
+
attribute(:'gender-type') { |value| Hash[gender_type: value] }
|
15
|
+
attribute(:'custom-gender') { |value| Hash[custom_gender: value] }
|
16
|
+
attribute(:'date-of-birth') { |value| Hash[date_of_birth: value] }
|
12
17
|
|
13
18
|
has_many(:'email-accounts') do |rel, _ids, _types|
|
14
19
|
Hash[email_accounts: get_stand_ins(rel)]
|