ApiErrorResponse

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

Constructors

Link copied to clipboard
constructor(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

사용자가 동의한 동의항목
Scopes that user agreed to

Link copied to clipboard
val apiType: String? = null

API 종류
API type

Link copied to clipboard
val code: Int

에러 코드
Error code

Link copied to clipboard
val msg: String

에러 메시지
Error message

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

사용자가 동의해야 하는 동의항목
Scopes that the user must agree to