NumericRating

@JsonClass(generateAdapter = true)
data class NumericRating(    val _id: String?,     val subtype: String?,     val channels: List<String>?,     val alignment: String?,     val additional_properties: Map<String, *>?,     val numeric_rating: Any?,     val min: Any?,     val max: Any?,     val units: String?) : StoryElement

Numeric rating story element data class: Indicates a numeric rating value

Constructors

Link copied to clipboard
fun NumericRating(    _id: String?,     subtype: String?,     channels: List<String>?,     alignment: String?,     additional_properties: Map<String, *>?,     numeric_rating: Any?,     min: Any?,     max: Any?,     units: String?)

Properties

Link copied to clipboard
val _id: String?

Globally Unique ID trait: A globally unique identifier of the content in the ANS repository.

Link copied to clipboard
val additional_properties: Map<String, *>?

A grab-bag object for non-validatable data.

Link copied to clipboard
val alignment: String?

Alignment: A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence. could be 'left', 'right', or 'center'

Link copied to clipboard
val channels: List<String>?

Channel trait: An optional list of output types for which this element should be visible

Link copied to clipboard
val max: Any?

The maximum possible value of rating. (int or double)

Link copied to clipboard
val min: Any?

The minimum possible value of rating. (int or double)

Link copied to clipboard
val numeric_rating: Any?

A number indicating the item's value. (int or double)

Link copied to clipboard
val subtype: String?

A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.

Link copied to clipboard
val type: String
Link copied to clipboard
val units: String?

A string describing the rating units. (int or double)