Skip to content

Instantly share code, notes, and snippets.

@cortinico
Created October 30, 2019 09:40
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 cortinico/a393b5a72bda829afc61922e92d4d931 to your computer and use it in GitHub Desktop.
Save cortinico/a393b5a72bda829afc61922e92d4d931 to your computer and use it in GitHub Desktop.
Generated Category classes from swagger-gradle-codegen
/**
* A Category used to group businesses on Yelp
* @property id Unique ID of the Category
* @property name Name of this category
*/
data class Category(
@Json(name = "id") var id: Long? = null,
@Json(name = "name") var name: String? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment