Package-level declarations

Types

Link copied to clipboard
data class JwtHeaderJson(val alg: String, val kid: String, val typ: String)

Data class representing a Jason Web Token header. Used for serializing and de-serializing the raw json. See JWT Introduction and App Store Connect API documentation

Link copied to clipboard
data class JwtPayloadJson(val aud: String, val exp: Int, val iat: Int, val iss: String, val scope: List<String>)

Data class representing a Jason Web Token payload. Used for serializing and de-serializing the raw json. See JWT Introduction and App Store Connect API documentation