#' Returns the id of a BeeDyn object
#'
#' @param object
#'
#' @return a character value containing to object id
#' @export
#'
#' @examples
id <- function(object) {
object$identifiant
}
#' Insert elements to a DeeDyn object
#'
#' @param object the DeeDyn object to modify
#' @param ... every objects to be added to the object parameter
#'
#' @export
#'
insert <- function(object,...) {
UseMethod("insert",object)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.