ApnConfigurationSetting

public protocol ApnConfigurationSetting : AnyObject

Setting providing access to the APN configuration.

  • Tells if the setting value has been changed and is waiting for change confirmation

    Declaration

    Swift

    var updating: Bool { get }
  • true if APN is manual, false otherwise.

    Declaration

    Swift

    var isManual: Bool { get }
  • url

    Access Point url.

    Declaration

    Swift

    var url: String { get }
  • Access Point username.

    Declaration

    Swift

    var username: String { get }
  • Access Point password.

    Declaration

    Swift

    var password: String { get }
  • Sets the apn configuration to automatic.

    Declaration

    Swift

    func setToAuto() -> Bool

    Return Value

    true if the setToAuto has been sent, false otherwise

  • Sets the apn configuration to manual.

    Declaration

    Swift

    func setToManual(url: String, username: String, password: String) -> Bool

    Parameters

    url

    APN url

    username

    APN username

    password

    APN password

    Return Value

    true if the apn configration has been sent, false otherwise