PlatformPitch

@JsonClass(generateAdapter = true)
data class PlatformPitch(    val additional_properties: Map<String, *>?,     val platform_path: String?,     val creation_event: PlatformPitch.PlatformPitchEvent,     val latest_event: PlatformPitch.PlatformPitchEvent)

Platform pitch: Trait that represents a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.

Constructors

Link copied to clipboard
fun PlatformPitch(    additional_properties: Map<String, *>?,     platform_path: String?,     creation_event: PlatformPitch.PlatformPitchEvent,     latest_event: PlatformPitch.PlatformPitchEvent)

Types

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class PlatformPitchEvent(    val additional_properties: Map<String, *>?,     val status: String?,     val time: Date?,     val user_id: String?,     val note: String?)

Trait that represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.

Properties

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

A grab-bag object for non-validatable data.

Link copied to clipboard
val creation_event: PlatformPitch.PlatformPitchEvent

Trait that represents initial event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.

Link copied to clipboard
val latest_event: PlatformPitch.PlatformPitchEvent

Trait that represents latest event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.

Link copied to clipboard
val platform_path: String?

The path of the platform that this pitch targets.