ModEventTag

data class ModEventTag(val add: List<String>, val remove: List<String>, val comment: String? = null, val durationInHours: Long? = null)

Add/Remove a tag on a subject

Parameters

add

Tags to be added to the subject. If already exists, won't be duplicated.

remove

Tags to be removed to the subject. Ignores a tag If it doesn't exist, won't be duplicated.

comment

Additional comment about added/removed tags.

durationInHours

Indicates how long the tags being added should remain before automatically being removed. Only applies to tags being added.

Constructors

Link copied to clipboard
constructor(add: List<String>, remove: List<String>, comment: String? = null, durationInHours: Long? = null)

Properties

Link copied to clipboard

Tags to be added to the subject. If already exists, won't be duplicated.

Link copied to clipboard

Additional comment about added/removed tags.

Link copied to clipboard

Indicates how long the tags being added should remain before automatically being removed. Only applies to tags being added.

Link copied to clipboard

Tags to be removed to the subject. Ignores a tag If it doesn't exist, won't be duplicated.