Revision

@JsonClass(generateAdapter = true)
data class Revision(    val branch: String?,     val editions: List<String>?,     val published: Boolean?,     val revision_id: String?,     val parent_id: String?,     val user_id: String?,     val additional_properties: Map<String, *>?)

Revision data class

Constructors

Link copied to clipboard
fun Revision(    branch: String?,     editions: List<String>?,     published: Boolean?,     revision_id: String?,     parent_id: String?,     user_id: String?,     additional_properties: Map<String, *>?)

Properties

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

A grab-bag object for non-validatable data.

Link copied to clipboard
val branch: String?

The name of the branch this revision was created on.

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

A list of identifiers of editions that point to this revision.

Link copied to clipboard
val parent_id: String?

The unique id of the revision that this revisions was branched from, or preceded it on the current branch.

Link copied to clipboard
val published: Boolean?

Whether or not this revision's parent story is published, in any form or place

Link copied to clipboard
val revision_id: String?

The unique id of this revision.

Link copied to clipboard
val user_id: String?

The unique user id of the person who created this revision.