Example #1
0
 public static EventNotificationTemplateSendCommandRequestBuilder SendCommand(string notificationTemplateSystemName, PushNotificationParams pushNotificationParams, PushNotificationCommandType command)
 {
     return(new EventNotificationTemplateSendCommandRequestBuilder(notificationTemplateSystemName, pushNotificationParams, command));
 }
Example #2
0
 public EventNotificationTemplateSendCommandRequestBuilder(string notificationTemplateSystemName, PushNotificationParams pushNotificationParams, PushNotificationCommandType command)
     : this()
 {
     this.NotificationTemplateSystemName = notificationTemplateSystemName;
     this.PushNotificationParams         = pushNotificationParams;
     this.Command = command;
 }
Example #3
0
 public static EventNotificationTemplateRegisterRequestBuilder Register(string notificationTemplateSystemName, PushNotificationParams pushNotificationParams)
 {
     return(new EventNotificationTemplateRegisterRequestBuilder(notificationTemplateSystemName, pushNotificationParams));
 }
Example #4
0
 public EventNotificationTemplateRegisterRequestBuilder(string notificationTemplateSystemName, PushNotificationParams pushNotificationParams)
     : this()
 {
     this.NotificationTemplateSystemName = notificationTemplateSystemName;
     this.PushNotificationParams         = pushNotificationParams;
 }