org.octopusden.octopus.vcsfacade.document.UserDocument.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.document
import org.springframework.data.elasticsearch.annotations.Field
import org.springframework.data.elasticsearch.annotations.FieldType
data class UserDocument(
@Field(type = FieldType.Keyword) val name: String,
@Field(type = FieldType.Keyword) val avatar: String?
)