public EventNotificationTemplateSendCommandRequestBuilder(string notificationTemplateSystemName, PushNotificationParams pushNotificationParams, PushNotificationCommandType command)
     : this()
 {
     this.NotificationTemplateSystemName = notificationTemplateSystemName;
     this.PushNotificationParams         = pushNotificationParams;
     this.Command = command;
 }
Exemple #2
0
 public static EventNotificationTemplateSendCommandRequestBuilder SendCommand(string notificationTemplateSystemName, PushNotificationParams pushNotificationParams, PushNotificationCommandType command)
 {
     return(new EventNotificationTemplateSendCommandRequestBuilder(notificationTemplateSystemName, pushNotificationParams, command));
 }