Apple Notification Class does not appear to have properties for badge and sound :
Is there some other class that could generate an iOS payload with sound and badge. I know I can do it manually by making strings, but would prefer to use a created class..
For example , this is undesired:
var alert = "{\"aps\":{\"alert\":\"" + pushNotificationMessage + "\",\"badge\":<input1>,\"sound\": <input2>"}}";
This would be better :
microsoftDefinedMethod( message = null, badge = false, sound = false);