@@ -925,3 +925,194 @@ catch (e) {
925925// }
926926}
927927```
928+
929+ ## Emergency Notification
930+
931+ ### List Recipients
932+
933+ ``` js
934+ try {
935+ const response = await EmergencyNotification .listRecipientsAsync (client, {" Size" : " 20" } );
936+ console .log (response .emergencyNotificationRecipients .emergencyNotificationRecipient .length );
937+ // 4
938+ }
939+ catch (e) {
940+ console .log (e);
941+ }
942+ ```
943+ ### Get Recipient
944+
945+ ``` js
946+ try {
947+ const response = await EmergencyNotification .getRecipientAsync (client, " enrid" );
948+ console .log (response .emergencyNotificationRecipient .identifier );
949+ // 63865500-0904-46b1-9b4f-7bd237a26363
950+ }
951+ catch (e) {
952+ console .log (e);
953+ }
954+ ```
955+ ### Replace Recipient
956+
957+ ``` js
958+ var en = new EmergencyNotification ();
959+ en .enrid = 123 ;
960+
961+ try {
962+ const response = await en .replaceRecipientAsync (client, recipient);
963+ console .log (response .emergencyNotificationRecipient .identifier );
964+ // 63865500-0904-46b1-9b4f-7bd237a26363
965+ }
966+ catch (e) {
967+ console .log (e);
968+ }
969+ ```
970+ ### Create Recipient
971+
972+ ``` js
973+ try {
974+ const response = await EmergencyNotification .createRecipientAsync (client, recipient);
975+ console .log (response .emergencyNotificationRecipient .identifier );
976+ // 63865500-0904-46b1-9b4f-7bd237a26363
977+ }
978+ catch (e) {
979+ console .log (e);
980+ }
981+ ```
982+ ### Delete Recipient
983+
984+ ``` js
985+ var en = new EmergencyNotification ();
986+ en .enrid = 123 ;
987+
988+ try {
989+ const response = await en .deleteRecipientAsync (client);
990+ }
991+ catch (e) {
992+ console .log (e);
993+ }
994+ ```
995+ ### List Group Orders
996+
997+ ``` js
998+ try {
999+ const response = await EmergencyNotification .listGroupOrdersAsync (helper .createClient (), {Size: " 20" });
1000+ console .log (response .emergencyNotificationGroupOrders .emergencyNotificationGroupOrder .length );
1001+ // 20
1002+ }
1003+ catch (e) {
1004+ console .log (e);
1005+ }
1006+ ```
1007+ ### Get Group Order
1008+
1009+ ``` js
1010+ try {
1011+ const response = await EmergencyNotification .getGroupOrderAsync (helper .createClient (), " orderId" );
1012+ console .log (response .emergencyNotificationGroup .orderId );
1013+ // orderId
1014+ }
1015+ catch (e) {
1016+ console .log (e);
1017+ }
1018+ ```
1019+ ### Create Group Order
1020+
1021+ ``` js
1022+ try {
1023+ const response = EmergencyNotification .createGroupOrderAsync (helper .createClient (), groupOrder);
1024+ console .log (response .OrderId );
1025+ // 900b3646-18df-4626-b237-3a8de648ebf6
1026+ }
1027+ catch (e) {
1028+ console .log (e);
1029+ }
1030+ ```
1031+ ### List Group
1032+
1033+ ``` js
1034+ try {
1035+ const response = await EmergencyNotification .listGroupsAsync (client, {" Size" : " 20" } );
1036+ console .log (response .emergencyNotificationGroups .emergencyNotificationGroup .length );
1037+ // 20
1038+ }
1039+ catch (e) {
1040+ console .log (e);
1041+ }
1042+ ```
1043+ ### Get Group
1044+
1045+ ``` js
1046+ try {
1047+ const response = await EmergencyNotification .getGroupAsync (client, " engid" );
1048+ console .log (response .emergencyNotificationGroup .identifier );
1049+ // 63865500-0904-46b1-9b4f-7bd237a26363
1050+ }
1051+ catch (e) {
1052+ console .log (e);
1053+ }
1054+ ```
1055+ ### List Endpoint Orders
1056+
1057+ ``` js
1058+ try {
1059+ const response = await EmergencyNotification .listEnpointOrdersAsync (client, {" Size" : " 20" } );
1060+ console .log (response .emergencyNotificationEndpointOrders .emergencyNotificationEndpointOrder .length );
1061+ // 20
1062+ }
1063+ catch (e) {
1064+ console .log (e);
1065+ }
1066+ ```
1067+ ### Get Endpoint Order
1068+
1069+ ``` js
1070+ try {
1071+ const response = await EmergencyNotification .getEndpointOrderAsync (client, " orderId" );
1072+ console .log (response .emergencyNotificationEndpointOrder .orderId );
1073+ // orderId
1074+ }
1075+ catch (e) {
1076+ console .log (e);
1077+ }
1078+ ```
1079+ ### Create Endpoint Orders
1080+
1081+ ``` js
1082+ try {
1083+ const response = await EmergencyNotification .createEndpointOrderAsync (client, endpoint );
1084+ console .log (response .emergencyNotificationEndpointOrder .orderId );
1085+ // 3e9a852e-2d1d-4e2d-84c3-87223a78cb70
1086+ }
1087+ catch (e) {
1088+ console .log (e);
1089+ }
1090+ ```
1091+
1092+ ## Aeuis
1093+
1094+ ### List Aeuis's
1095+
1096+ ``` js
1097+ try {
1098+ const response = await Aeuis .listAsync (client, {Size: 20 } );
1099+ console .log (response .AlternateEndUserIdentifiers .AlternateEndUserIdentifier .length );
1100+ // 20
1101+ }
1102+ catch (e) {
1103+ console .log (e);
1104+ }
1105+ ```
1106+
1107+ ### Get Aeuis's
1108+
1109+ ``` js
1110+ try {
1111+ const response = await Aeuis .getAsync (client, " acid" );
1112+ console .log (response .AlternateEndUserIdentifier .Identifier );
1113+ // acid
1114+ }
1115+ catch (e) {
1116+ console .log (e);
1117+ }
1118+ ```
0 commit comments