Interface > healthstack.backend.integration.task > Item

Item

[androidJvm]
data class Item(val name: String, val type: String, val contents: Contents, val sequence: Int)

Stores the information of the item received from backend.

Constructors

Item

[androidJvm]
fun Item(name: String, type: String, contents: Contents, sequence: Int)

Properties

Name Summary
contents

[androidJvm]
val contents: Contents
Contents of the item. Contents

name

[androidJvm]
val name: String
Name of the item.

sequence

[androidJvm]
val sequence: Int
Sequence of the item. (For ordering)

type

[androidJvm]
val type: String
Type of the item.