diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2018-07-08 09:34:59 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2018-07-08 09:34:59 -0700 |
commit | 151f74ffa870561bbb3c857c0f07aeb4b27968f5 (patch) | |
tree | fc81aefe1330750c9fcfef28f38d2c938b792cd4 /src/main/java/com/p4square/ccbapi/model/Address.java | |
parent | 35887b81ac23a389f123df529e45fd9c49ce7459 (diff) |
Add Groups Service APIs
Diffstat (limited to 'src/main/java/com/p4square/ccbapi/model/Address.java')
-rw-r--r-- | src/main/java/com/p4square/ccbapi/model/Address.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/p4square/ccbapi/model/Address.java b/src/main/java/com/p4square/ccbapi/model/Address.java index 9bbd6e3..01934d8 100644 --- a/src/main/java/com/p4square/ccbapi/model/Address.java +++ b/src/main/java/com/p4square/ccbapi/model/Address.java @@ -13,7 +13,8 @@ public class Address { @XmlEnumValue("mailing") MAILING, @XmlEnumValue("home") HOME, @XmlEnumValue("work") WORK, - @XmlEnumValue("other") OTHER; + @XmlEnumValue("other") OTHER, + @XmlEnumValue("meeting") MEETING; } @XmlAttribute(name="type") |