ConnectionPriority
public enum ConnectionPriority : IntConnection Priorities define when a connection should be combined or used.
- 
                  
                  Speedify will always try to use this network when it is available. Recommended for Internet connections that do not have data caps on them. DeclarationSwift case always = 0
- 
                  
                  Speedify will try not to use this network, but will use it when the ALWAYS connections are being heavily used or slowing down. This setting is good for connections that have reasonable data caps, as they will be used much less often than the ALWAYS connections. DeclarationSwift case secondary = 1
- 
                  
                  Speedify will not use this network, unless all the ALWAYS and SECONDARY networks are not available. This setting is good for very expensive connections, which should only be used in emergencies. DeclarationSwift case backup = 2
- 
                  
                  Speedify will never use this connection. DeclarationSwift case never = 100
- 
                  
                  Let Speedify manage the priority. DeclarationSwift case automatic = 200
- 
                  
                  A ConnectionPriority enum returned as a string. DeclarationSwift public var description: String { get }
