Package-level declarations

공통 모델 패키지
Package for common models

Types

Link copied to clipboard
data class ApiError(val statusCode: Int, val reason: ApiErrorCause, val response: ApiErrorResponse) : KakaoSdkError, Parcelable

API 에러
API errors

Link copied to clipboard

ApiError 에러 원인
Causes of ApiError

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

API 에러 응답
Response for API errors

Link copied to clipboard
data class AppsError(val statusCode: Int, val reason: AppsErrorCause, val response: AppsErrorResponse) : KakaoSdkError, Parcelable

Apps 에러
Apps error

Link copied to clipboard

Apps 에러 원인
Cause of Apps error

Link copied to clipboard
data class AppsErrorResponse(val errorCode: String, val errorMessage: String) : Parcelable

Apps 에러 응답
Response of Apps error

Link copied to clipboard
data class AuthError(val statusCode: Int, val reason: AuthErrorCause, val response: AuthErrorResponse) : KakaoSdkError, Parcelable

인증 및 인가 에러
Authorization or authentication errors

Link copied to clipboard

AuthError 에러 원인
Causes of AuthError

Link copied to clipboard
data class AuthErrorResponse(val error: String, val errorDescription: String?) : Parcelable

인증 및 인가 에러 응답
Response for authorization or authentication errors

Link copied to clipboard
data class ClientError(val reason: ClientErrorCause, val msg: String = reason.javaClass.getField(reason.name) .getAnnotation(Description::class.java)?.value ?: "Client-side error") : KakaoSdkError, Parcelable

클라이언트 에러
Client errors

Link copied to clipboard
Link copied to clipboard

SDK 내부 동작 에러
SDK internal operation errors

Link copied to clipboard
class SdkIdentifier(val identifiers: String? = null)

Kakao SDK를 사용하는 SDK의 참고용 식별자
Reference identifier for the SDK using Kakao SDK