Interface IWirelessBilling
- Namespace
- Meraki.Api.Interfaces.Products.Wireless
- Assembly
- Meraki.Api.dll
Represents a collection of functions to interact with the API endpoints
public interface IWirelessBilling
Methods
GetNetworkWirelessBillingAsync(string, CancellationToken)
Return the billing settings of this network
[Get("/networks/{networkId}/wireless/billing")]
Task<WirelessBilling> GetNetworkWirelessBillingAsync(string networkId, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call
UpdateNetworkWirelessBillingAsync(string, WirelessBilling, CancellationToken)
Update the billing settings
[Put("/networks/{networkId}/wireless/billing")]
Task<WirelessBilling> UpdateNetworkWirelessBillingAsync(string networkId, WirelessBilling updateNetworkWirelessBilling, CancellationToken cancellationToken = default)
Parameters
networkId
stringThe network id
updateNetworkWirelessBilling
WirelessBillingBody for updating network wireless billing
cancellationToken
CancellationToken
Returns
Exceptions
- ApiException
Thrown when fails to make API call