data class Content : Parcelable
콘텐츠의 내용을 담고 있는 오브젝트.
imageWidth
- 콘텐츠의 이미지 너비 (단위: 픽셀)
imageHeight
- 콘텐츠의 이미지 높이 (단위: 픽셀)
Author
kevin.kang.
<init> |
콘텐츠의 내용을 담고 있는 오브젝트. Content(title: String, imageUrl: String, link: Link, description: String? = null, imageWidth: Int? = null, imageHeight: Int? = null) |
description |
val description: String? |
imageHeight |
콘텐츠의 이미지 높이 (단위: 픽셀) val imageHeight: Int? |
imageUrl |
콘텐츠의 이미지 URL val imageUrl: String |
imageWidth |
콘텐츠의 이미지 너비 (단위: 픽셀) val imageWidth: Int? |
link |
콘텐츠 클릭 시 이동할 링크 정보 val link: Link |
title |
콘텐츠의 타이틀 val title: String |