Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #47 from sergiugirnet/master
Browse files Browse the repository at this point in the history
Added BIRTHDAY_DAY, BIRTHDAY_MONTH and ANNIVERSARY
  • Loading branch information
csciuto committed Jun 24, 2015
2 parents bd55090 + 70e8817 commit 092c5b0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CTCTWrapper/Components/Activities/AddContactsImportData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,26 @@ public class AddContactsImportData : Component
[DataMember(Name = "home_phone", EmitDefaultValue = false)]
public string HomePhone { get; set; }

/// <summary>
/// Birthday day
/// </summary>
[DataMember(Name = "birthday_day", EmitDefaultValue = false)]
public string BirthdayDay { get; set; }

/// <summary>
/// Birthday month
/// </summary>
[DataMember(Name = "birthday_month", EmitDefaultValue = false)]
public string BirthdayMonth { get; set; }

/// <summary>
/// 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
/// </summary>
[DataMember(Name = "anniversary", EmitDefaultValue = false)]
public string Anniversary { get; set; }

/// <summary>
/// Gets or sets the email addresses list.
/// </summary>
Expand Down

0 comments on commit 092c5b0

Please sign in to comment.