All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.octopus.vcsfacade.document.FileChangeDocument.kt Maven / Gradle / Ivy

The newest version!
package org.octopusden.octopus.vcsfacade.document

import org.octopusden.octopus.vcsfacade.client.common.dto.FileChangeType
import org.springframework.data.elasticsearch.annotations.Field
import org.springframework.data.elasticsearch.annotations.FieldType

data class FileChangeDocument(
    @Field(type = FieldType.Keyword) val type: FileChangeType,
    @Field(type = FieldType.Text, analyzer = "classic") val path: String,
    @Field(type = FieldType.Keyword) val link: String
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy