R/api-config.R

#' @title ApiConfig
#' @docType class
#' @description  Global configuration for the OSPSuite .NET API
#' @keywords internal
ApiConfig <- R6::R6Class(
  "ApiConfig",
  cloneable = FALSE,
  inherit = DotNetWrapper,
  active = list(
    #' @field pkParametersFilePath Full path of the pkParameter file
    pkParametersFilePath = function(value) {
      private$.wrapProperty("PKParametersFilePath", value)
    },
    #' @field dimensionFilePath Full path of the dimension file
    dimensionFilePath = function(value) {
      private$.wrapProperty("DimensionFilePath", value)
    }
  )
)
Open-Systems-Pharmacology/OSPSuite-R documentation built on Feb. 14, 2025, 4:48 p.m.