Package-level declarations

Types

Link copied to clipboard
interface Data

APi 요청에 필요한 데이터를 나타냅니다.

Link copied to clipboard
interface DataRequest<T : Data, U : Response> : Request<U>

데이터가 필요한 API 요청을 나타냅니다.

Link copied to clipboard
interface LiveData : Data

웹소켓 실시간 요청에 필요한 데이터를 나타냅니다.

Link copied to clipboard
interface LiveRequest<out T : LiveData, out U : Response> : Request<U>

웹소켓 실시간 요청을 나타냅니다.

Link copied to clipboard
interface NoDataRequest<T : Response> : Request<T>

데이터가 필요하지 않은 API 요청을 나타냅니다.

Link copied to clipboard
interface Request<out T : Response>

API 요청을 나타냅니다.

Link copied to clipboard
interface Response

API 응답을 나타냅니다.