models

package models

Visibility
  1. Public
  2. All

Type Members

  1. case class App(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, content_type: String = "app", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), content: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  2. case class AppFormData(english_title: String, french_title: String, english_slug: String, french_slug: String, english_description: String, french_description: String, english_content: String, french_content: String, english_tags: String, french_tags: String, starred: Int) extends Product with Serializable

  3. case class Audio(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, content_type: String = "audio", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), audio_url: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  4. case class AudioFormData(english_title: String, french_title: String, english_slug: String, french_slug: String, english_description: String, french_description: String, english_audio_url: String, french_audio_url: String, english_primary_tag: String, french_primary_tag: String, english_tags: String, french_tags: String, starred: Int) extends Product with Serializable

  5. abstract class Content extends Model

  6. case class Featured(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, position: Integer, icon_type: String, content: String, content_type: String = "featured", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  7. case class FeaturedFormData(english_title: String, french_title: String, english_slug: String, french_slug: String, english_description: String, french_description: String, position: Int, icon_type: String, english_content: String, french_content: String, english_primary_tag: String, french_primary_tag: String, starred: Int) extends Product with Serializable

  8. case class FooterItem(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, position: Integer, content: String, content_type: String = "footer_item", primary_tag: String = "footer_item", starred: Integer = scala.this.Predef.int2Integer(9), status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  9. case class FooterItemFormData(english_title: String, french_title: String, english_description: String, french_description: String, position: Int, english_content: String, french_content: String) extends Product with Serializable

  10. case class HeaderItem(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, position: Integer, content: String, content_type: String = "header_item", primary_tag: String = "header_item", starred: Integer = scala.this.Predef.int2Integer(9), status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  11. case class HeaderItemFormData(english_title: String, french_title: String, english_description: String, french_description: String, position: Int, english_content: String, french_content: String) extends Product with Serializable

  12. case class HomeBlock(id: String = helpers.UUID.random.string, version: Long = 0, language: String, title: String = "", description: String = "", content: String = "") extends Product with Serializable

  13. case class Link(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, content_type: String = "link", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), link_url: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  14. case class LinkFormData(english_title: String, french_title: String, english_slug: String, french_slug: String, english_description: String, french_description: String, english_link_url: String, french_link_url: String, english_primary_tag: String, french_primary_tag: String, english_tags: String, french_tags: String, starred: Int) extends Product with Serializable

  15. case class MenuItem(id: String = helpers.UUID.random.string, version: Long = 0, parentId: Option[String], tagLineId: Option[String], contentId: Option[String], language: String, position: Int = 0, title: String, description: String = "", longDescription: String = "", published: Int = 0) extends Product with Serializable

  16. abstract class Model extends AnyRef

  17. case class SelectFeatured(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, href_slug: String, position: Integer, icon_type: String, content_type: String = "select_featured", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  18. case class SelectFeaturedFormData(english_title: String, french_title: String, english_description: String, french_description: String, href_slug: String, position: Int, icon_type: String, english_primary_tag: String, french_primary_tag: String, starred: Int) extends Product with Serializable

  19. case class Site(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, content_type: String = "site", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), site_logo: String, content: String, site_url: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  20. case class SiteFormData(english_title: String, french_title: String, english_description: String, french_description: String, english_content: String, french_content: String, english_site_url: String, french_site_url: String, english_tags: String, french_tags: String, starred: Int) extends Product with Serializable

  21. case class SiteWord(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, href_id: UUID, position: Integer, content_type: String = "site_word", primary_tag: String = "site_word", starred: Integer = scala.this.Predef.int2Integer(9), status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  22. case class SiteWordFormData(english_title: String, french_title: String, english_description: String, french_description: String, href_id: String, position: Int) extends Product with Serializable

  23. case class Slide(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, position: Integer, content_type: String = "slide", primary_tag: String = "slide", starred: Integer = scala.this.Predef.int2Integer(9), slide_background: String, content: String = "", slide_url: String, header_colour: String = "white", status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  24. case class SlideFormData(english_title: String, french_title: String, english_description: String, french_description: String, position: Int, english_slide_url: String, french_slide_url: String, header_colour: String) extends Product with Serializable

  25. case class Tag(id: UUID = helpers.UUID.random, version: Long = 0, name: String, count: Long = 0, createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Product with Serializable

  26. case class TagFormData(name: String) extends Product with Serializable

  27. case class TagLine(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, position: Integer, content_type: String = "tag_line", primary_tag: String = "tag_line", starred: Integer = scala.this.Predef.int2Integer(9), status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  28. case class TagLineFormData(english_title: String, french_title: String, english_description: String, french_description: String, position: Int, english_tags: String, french_tags: String) extends Product with Serializable

  29. case class Text(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, content_type: String = "text", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), content: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  30. case class TextFormData(english_title: String, french_title: String, english_slug: String, french_slug: String, english_description: String, french_description: String, english_content: String, french_content: String, english_primary_tag: String, french_primary_tag: String, english_tags: String, french_tags: String, starred: Int) extends Product with Serializable

  31. case class User(id: UUID = helpers.UUID.random, version: Long = 0, email: String, password: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Model with Product with Serializable

  32. case class Video(id: UUID, translated_id: UUID, version: Long = 0, title: String, slug: String, description: String, long_description: String, content_type: String = "video", primary_tag: String, starred: Integer = scala.this.Predef.int2Integer(9), video_type: String, video_url: String, status: Integer = scala.this.Predef.int2Integer(1), createdAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None, updatedAt: Option[com.github.nscala_time.time.Imports.DateTime] = scala.None) extends Content with Product with Serializable

  33. case class VideoFormData(english_title: String, french_title: String, english_slug: String, french_slug: String, english_description: String, french_description: String, english_long_description: String, french_long_description: String, video_type: String, english_video_url: String, french_video_url: String, english_primary_tag: String, french_primary_tag: String, english_tags: String, french_tags: String, starred: Int) extends Product with Serializable

Value Members

  1. object App extends Serializable

  2. object Audio extends Serializable

  3. object ContentModel

  4. object Featured extends Serializable

  5. object FooterItem extends Serializable

  6. object HeaderItem extends Serializable

  7. object HomeBlock extends Serializable

  8. object Link extends Serializable

  9. object MenuItem extends Serializable

  10. object SelectFeatured extends Serializable

  11. object Site extends Serializable

  12. object SiteWord extends Serializable

  13. object Slide extends Serializable

  14. object Tag extends Serializable

  15. object TagLine extends Serializable

  16. object Text extends Serializable

  17. object User extends Serializable

    User companion object.

  18. object Video extends Serializable

Ungrouped