コード例 #1
0
 public static Task <EmergencyNotificationEndpointOrder> CreateEndpointOrders(EmergencyNotificationEndpointOrder order)
 {
     return(CreateEndpointOrders(Client.GetInstance(), order));
 }
コード例 #2
0
        public async static Task <EmergencyNotificationEndpointOrder> CreateEndpointOrders(Client client, EmergencyNotificationEndpointOrder order)
        {
            var item = await client.MakePostRequest <EmergencyNotificationEndpointOrder>(client.ConcatAccountPath($"/emergencyNotificationEndpointOrders"), order);

            return(item);
        }