Skip to content

Instantly share code, notes, and snippets.

@raphaeldelio
Created July 13, 2022 07:16
Show Gist options
  • Select an option

  • Save raphaeldelio/e3e0275be0a99bf2eb4554acfe69c41c to your computer and use it in GitHub Desktop.

Select an option

Save raphaeldelio/e3e0275be0a99bf2eb4554acfe69c41c to your computer and use it in GitHub Desktop.
@Document
data class Store(
@Id
@Indexed
var id: String? = null,
@Indexed
var name: String,
@Searchable
var storeLogo: String,
@Indexed
var products: List<Product>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment