ImageInfo

data class ImageInfo(url: String, contentType: String, length: Int, width: Int, height: Int) : Parcelable

Constructors

Link copied to clipboard
fun ImageInfo(url: String, contentType: String, length: Int, width: Int, height: Int)

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 contentType: String

업로드 된 이미지의 Content-Type

Link copied to clipboard
val height: Int

업로드 된 이미지의 높이 (단위: 픽셀)

Link copied to clipboard
val length: Int

업로드 된 이미지의 용량 (단위: 바이트)

Link copied to clipboard
val url: String

업로드 된 이미지의 URL

Link copied to clipboard
val width: Int

업로드 된 이미지의 너비 (단위: 픽셀)