R/getEventAppearanceTypes.R

Defines functions getEventAppearanceTypes

Documented in getEventAppearanceTypes

#' Helper function to return the event appearance types dictionary
#'
#'@return dictionary
#'
#' @author Layla Rohkohl, \email{byehity@gmail.com}
#'
#' @examples
#' getEventAppearanceTypes()
#'
#' @export
#'
getEventAppearanceTypes <- function() {
  return(c(
    "contestant" = "Contestant",
    "exhibitor" = "Exhibitor",
    "organizer" = "Organizer",
    "speaker" = "Speaker",
    "sponsor" = "Sponsor"
  ))
}
Lyrohk/cruncher documentation built on Dec. 17, 2021, 1:17 a.m.