Skip to content

Instantly share code, notes, and snippets.

@obeshor
Created July 16, 2019 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obeshor/6225650faef61dc36a4081e62ae34c3c to your computer and use it in GitHub Desktop.
Save obeshor/6225650faef61dc36a4081e62ae34c3c to your computer and use it in GitHub Desktop.
data class Recognition(
var id: String = "",
var title: String = "",
var confidence: Float = 0F
) {
override fun toString(): String {
return "Title = $title, Confidence = $confidence)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment