Packages

package space

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ActivateSpacePayloadDto(id: SpaceId) extends Product with Serializable
  2. case class AssignSpacePrincipalPayloadDto(id: SpaceId, principal: AnnettePrincipal) extends Product with Serializable
  3. case class CreateSpacePayloadDto(id: SpaceId, name: String, description: String, categoryId: CategoryId, authors: Set[AnnettePrincipal] = Set.empty, targets: Set[AnnettePrincipal] = Set.empty) extends Product with Serializable
  4. case class DeactivateSpacePayloadDto(id: SpaceId) extends Product with Serializable
  5. case class DeleteSpacePayloadDto(id: SpaceId) extends Product with Serializable
  6. case class SpaceFindQueryDto(offset: Int = 0, size: Int, filter: Option[String] = None, spaceIds: Option[Set[SpaceId]] = None, categories: Option[Set[CategoryId]] = None, sortBy: Option[Seq[SortBy]] = None) extends Product with Serializable
  7. case class SpaceViewDto(id: SpaceId, name: String, description: String, categoryId: CategoryId, active: Boolean, subscriptions: Set[AnnettePrincipal], authors: Set[AnnettePrincipal] = Set.empty, updatedBy: AnnettePrincipal, updatedAt: OffsetDateTime = OffsetDateTime.now) extends Product with Serializable
  8. case class UnassignSpacePrincipalPayloadDto(id: SpaceId, principal: AnnettePrincipal) extends Product with Serializable
  9. case class UpdateSpaceCategoryPayloadDto(id: SpaceId, categoryId: CategoryId) extends Product with Serializable
  10. case class UpdateSpaceDescriptionPayloadDto(id: SpaceId, description: String) extends Product with Serializable
  11. case class UpdateSpaceNamePayloadDto(id: SpaceId, name: String) extends Product with Serializable

Ungrouped