AuthorizationType

public enum AuthorizationType

An enum representing the header to use with an AccessTokenPlugin

  • The "Basic" header.

    Declaration

    Swift

    case basic
  • The "Bearer" header.

    Declaration

    Swift

    case bearer
  • Custom header implementation.

    Declaration

    Swift

    case custom(String)
  • Undocumented

    Declaration

    Swift

    public var value: String { get }
  • Declaration

    Swift

    public static func == (lhs: AuthorizationType, rhs: AuthorizationType) -> Bool