Packages

package domain

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. domain
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Order(petId: PetId, userId: auth.UserId, shipTime: Option[Instant] = None) extends Product with Serializable
  2. trait OrderAlgebra[F[_]] extends CRDAlgebra[F, OrderId, Order, Instant] with Serializable
    Annotations
    @implicitNotFound("Could not find an instance of OrderAlgebra for ${F}")
  3. type OrderId = UUID
  4. final case class Pet(name: String, bio: Option[String], createdBy: auth.UserId, status: String, photoUrls: List[String] = Nil, updateTime: Option[Instant] = None) extends Product with Serializable
  5. trait PetAlgebra[F[_]] extends CRUDAlgebra[F, PetId, Pet, Instant] with Serializable
    Annotations
    @implicitNotFound("Could not find an instance of PetAlgebra for ${F}")
  6. type PetId = UUID

Value Members

  1. object OrderAlgebra extends Serializable
  2. object PetAlgebra extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped