data class ListTemplate : DefaultTemplate, Parcelable
여러 개의 컨텐츠를 리스트 형태로 보여줄 수 있는 메시지 템플릿 클래스.
<init> |
여러 개의 컨텐츠를 리스트 형태로 보여줄 수 있는 메시지 템플릿 클래스. ListTemplate(headerTitle: String, headerLink: Link, contents: List<Content>, buttons: List<Button>? = null, buttonTitle: String? = null) |
buttons |
버튼 목록. 버튼 타이틀과 링크를 변경하고 싶을때, 버튼 두개를 사용하고 싶을때 사용. (최대 2개) val buttons: List<Button>? |
buttonTitle |
기본 버튼 타이틀(자세히 보기)을 변경하고 싶을 때 설정. 이 값을 사용하면 클릭 시 이동할 링크는 content 에 입력된 값이 사용됨. val buttonTitle: String? |
contents |
리스트에 노출되는 컨텐츠 목록 (최소 2개, 최대 3개) val contents: List<Content> |
headerLink |
헤더 타이틀 내용에 해당하는 링크 정보 val headerLink: Link |
headerTitle |
리스트 상단에 노출되는 헤더 타이틀 (최대 200자) val headerTitle: String |
objectType |
"list" 고정 값 val objectType: String |