Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smithrobs committed Feb 21, 2018
2 parents 3aab135 + cb587be commit 66177f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Nexmo.Api/SMS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public class SMSDeliveryReceipt
/// The time at UTC±00:00 when Nexmo started to push this Delivery Receipt to your webhook endpoint. The message-timestamp is in the following format YYYY-MM-DD HH:MM:SS. For example, 2020-01-01 12:00:00.
/// </summary>
[JsonProperty("message-timestamp")]
public string message_timestamp { get; set; }
public DateTime message_timestamp { get; set; }
/// <summary>
/// The client-ref you set in the request.
/// </summary>
Expand Down Expand Up @@ -300,7 +300,7 @@ public class SMSInbound
/// The time at UTC±00:00 that Nexmo started to push this inbound message to your webhook endpoint. The message-timestamp is in the following format YYYY-MM-DD HH:MM:SS. For example, 2020-01-01 12:00:00.
/// </summary>
[JsonProperty("message-timestamp")]
public string message_timestamp { get; set; }
public DateTime message_timestamp { get; set; }
/// <summary>
/// A unix timestamp representation of message-timestamp.
/// </summary>
Expand Down

0 comments on commit 66177f6

Please sign in to comment.