org.octopusden.octopus.infrastructure.jira.dto.Assignee.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jira-client Show documentation
Show all versions of jira-client Show documentation
Octopus module: jira-client
The newest version!
package org.octopusden.octopus.infrastructure.jira.dto
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
import com.fasterxml.jackson.annotation.JsonInclude
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
data class Assignee constructor(val key: String, val name: String)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy