From 70e8817089b0ce9702d04065f9117d6eee0bf28c Mon Sep 17 00:00:00 2001 From: "sergiu.girnet" Date: Thu, 18 Jun 2015 15:26:37 +0300 Subject: [PATCH] Added BIRTHDAY_DAY, BIRTHDAY_MONTH and ANNIVERSARY --- .../Activities/AddContactsImportData.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CTCTWrapper/Components/Activities/AddContactsImportData.cs b/CTCTWrapper/Components/Activities/AddContactsImportData.cs index 0041da6..2f5c603 100644 --- a/CTCTWrapper/Components/Activities/AddContactsImportData.cs +++ b/CTCTWrapper/Components/Activities/AddContactsImportData.cs @@ -65,6 +65,26 @@ public class AddContactsImportData : Component [DataMember(Name = "home_phone", EmitDefaultValue = false)] public string HomePhone { get; set; } + /// + /// Birthday day + /// + [DataMember(Name = "birthday_day", EmitDefaultValue = false)] + public string BirthdayDay { get; set; } + + /// + /// Birthday month + /// + [DataMember(Name = "birthday_month", EmitDefaultValue = false)] + public string BirthdayMonth { get; set; } + + /// + /// Anniversary + /// Accepts the following formats MM/DD/YYYY, M/D/YYYY, YYYY/MM/DD, YYYY/M/D, YYYY-MM-DD, YYYY-M-D,M-D-YYYY, M-DD-YYYY. + /// The year must be greater than 1900 and cannot be more than 10 years in the future (with respect to the current year + /// + [DataMember(Name = "anniversary", EmitDefaultValue = false)] + public string Anniversary { get; set; } + /// /// Gets or sets the email addresses list. ///