Ejemplo n.º 1
0
 /// <summary>
 ///     Updates the specified wireless access point of a corporate map by ID.
 ///     HTTP Method: put
 ///     Endpoint: /restapi/{apiVersion}/account/{accountId}/emergency-address-auto-update/wireless-points/{pointId}
 ///     Rate Limit Group: Heavy
 ///     App Permission: EditAccounts
 ///     User Permission: ConfigureEmergencyMaps
 /// </summary>
 public async Task <WirelessPointInfo> Put(UpdateWirelessPoint updateWirelessPoint,
                                           RestRequestConfig restRequestConfig = null)
 {
     if (pointId == null)
     {
         throw new ArgumentException("Parameter cannot be null", nameof(pointId));
     }
     return(await rc.Put <WirelessPointInfo>(Path(), updateWirelessPoint, null, restRequestConfig));
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Updates the specified wireless access point of a corporate map by ID.
 ///     HTTP Method: put
 ///     Endpoint: /restapi/{apiVersion}/account/{accountId}/emergency-address-auto-update/wireless-points/{pointId}
 ///     Rate Limit Group: Heavy
 ///     App Permission: EditAccounts
 ///     User Permission: ConfigureEmergencyMaps
 /// </summary>
 public async Task <WirelessPointInfo> Put(UpdateWirelessPoint updateWirelessPoint,
                                           RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Put <WirelessPointInfo>(Path(), updateWirelessPoint, null, restRequestConfig));
 }