ApiErrorResponse

data class ApiErrorResponse(code: Int, msg: String, apiType: String?, requiredScopes: List<String>?, allowedScopes: List<String>?) : Parcelable

카카오 API 호출 시 에러 응답

Constructors

Link copied to clipboard
fun ApiErrorResponse(code: Int, msg: String, apiType: String? = null, requiredScopes: List<String>? = null, allowedScopes: List<String>? = null)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val allowedScopes: List<String>? = null
Link copied to clipboard
val apiType: String? = null
Link copied to clipboard
val code: Int

에러 코드

Link copied to clipboard
val msg: String

자세한 에러 설명

Link copied to clipboard
val requiredScopes: List<String>? = null

API 호출을 위해 추가로 필요한 동의 항목