RingModel

data class RingModel @JvmOverloads constructor(    val id: String? = null,     val customId: String? = null,     val name: String? = null) : Parcelable

Data class used to describe an info about a ring model.

Constructors

Link copied to clipboard
fun RingModel(    id: String? = null,     customId: String? = null,     name: String? = null)

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 customId: String? = null

custom ID of the ring model.

Link copied to clipboard
val id: String? = null

ID of the ring model.

Link copied to clipboard
val name: String? = null

Name of the model.