GrantType

public enum GrantType : String, Codable, Equatable, CustomStringConvertible

Enum representing the grant type for OAuth authentication.

  • otp

    One-time password grant type.

    Declaration

    Swift

    case otp
  • JWT Bearer grant type.

    Declaration

    Swift

    case jwtBearer = "urn:ietf:params:oauth:grant-type:jwt-bearer"
  • A textual representation of the grant type.

    Declaration

    Swift

    public var description: String { get }