R/GBIFLogin.R

#' @title GBIFLogin Data Class
#'
#' @description A class for managing GBIF login data.
#'
#' @slot username A vector of type character specifying a GBIF username.
#'
#' @slot email A vector of type character specifying the email associated with
#'  a GBIF username.
#'
#' @slot pwd A vector of type character containing the user's password for
#' logging in to GBIF.
#'
#' @importFrom methods new
#'
#' @examples
#' \donttest{
#' GBIFLogin <- GBIFLoginManager(
#'   user = "occCiteTester",
#'   email = "****@yahoo.com",
#'   pwd = "12345"
#' )
#' }
#'
#' @export
GBIFLogin <- methods::setClass("GBIFLogin",
  slots = c(
    username = "vector",
    email = "vector",
    pwd = "vector"
  )
)

Try the occCite package in your browser

Any scripts or data that you put into this service are public.

occCite documentation built on Aug. 5, 2022, 5:09 p.m.