org.octopusden.octopus.vcsfacade.dto.GiteaPullRequestEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vcs-facade Show documentation
Show all versions of vcs-facade Show documentation
Octopus module: vcs-facade
The newest version!
package org.octopusden.octopus.vcsfacade.dto
import com.fasterxml.jackson.databind.PropertyNamingStrategies
import com.fasterxml.jackson.databind.annotation.JsonNaming
import org.octopusden.octopus.infrastructure.gitea.client.dto.GiteaPullRequest
import org.octopusden.octopus.infrastructure.gitea.client.dto.GiteaRepository
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy::class)
data class GiteaPullRequestEvent(
val action: String,
val pullRequest: GiteaPullRequest,
val repository: GiteaRepository
)