StoryLength

@JsonClass(generateAdapter = true)
data class StoryLength(    val word_count_planned: Int?,     val word_count_actual: Int?,     val inch_count_planned: Int?,     val inch_count_actual: Int?,     val line_count_planned: Int?,     val line_count_actual: Int?,     val character_count_planned: Int?,     val character_count_actual: Int?,     val character_encoding: String?)

Story length information.

Constructors

Link copied to clipboard
fun StoryLength(    word_count_planned: Int?,     word_count_actual: Int?,     inch_count_planned: Int?,     inch_count_actual: Int?,     line_count_planned: Int?,     line_count_actual: Int?,     character_count_planned: Int?,     character_count_actual: Int?,     character_encoding: String?)

Properties

Link copied to clipboard
val character_count_actual: Int?

The current number of characters in the story.

Link copied to clipboard
val character_count_planned: Int?

The anticipated number of characters in the story.

Link copied to clipboard
val character_encoding: String?

The encoding used for counting characters in the story.

Link copied to clipboard
val inch_count_actual: Int?

The current length of the story in inches.

Link copied to clipboard
val inch_count_planned: Int?

The anticipated length of the story in inches.

Link copied to clipboard
val line_count_actual: Int?

The current length of the story in lines.

Link copied to clipboard
val line_count_planned: Int?

The anticipated length of the story in lines.

Link copied to clipboard
val word_count_actual: Int?

Current number of words.

Link copied to clipboard
val word_count_planned: Int?

The anticipated number of words in the story.