Skip to content

Commit

Permalink
Merge pull request Redth#201 from alaa9jo/patch-2
Browse files Browse the repository at this point in the history
Update BlackberryNotification.cs
  • Loading branch information
Redth committed Jun 5, 2013
2 parents 6037571 + 88d78de commit fcac74b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion PushSharp.Blackberry/BlackberryNotification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,25 @@ public BlackberryNotification()
{
PushId = Guid.NewGuid ().ToString ();
Recipients = new List<BlackberryRecipient> ();
DeliverBeforeTimestamp = DateTime.UtcNow.AddSeconds(30);
DeliverBeforeTimestamp = DateTime.UtcNow.AddMinutes(5);
}

public string PushId { get; private set; }
public QualityOfServiceLevel? QualityOfService { get;set; }
/// <summary>
/// Address (e.g. URL) that Blackberry push service could use for notification
/// of results related to the message
/// </summary>
public string PpgNotifyRequestedTo { get; set; }
/// <summary>
/// Date and time by which the content must be delivered,expressed as UTC
/// Message that has aged beyond this date will not be transmitted
/// </summary>
public DateTime? DeliverBeforeTimestamp { get; set; }
/// <summary>
/// Date and time after which the content should be delivered,expressed as UTC
/// Message will not be transmitted before this date
/// </summary>
public DateTime? DeliverAfterTimestamp { get; set; }
public List<BlackberryRecipient> Recipients { get;set; }
public string SourceReference { get; set; }
Expand Down

0 comments on commit fcac74b

Please sign in to comment.