Class that defines the Signatures Table Row in the Generic Report
SignaturesTableRow.Rd
This R6 class controls one row of the Signatures table that documents the date, version, reason and what changed in the update on the document.
Active bindings
name
Active binding for setting the name of the person who will sign
department
Active binding for setting the department of the person who signs
date
Active binding for setting the date of sign
Methods
Method new()
Usage
SignaturesTableRow$new(
name = NA_character_,
department = NA_character_,
date = NA_character_
)
Arguments
name
String. Name of the person who will sign the document
department
String. Department of the person who will sign the document
date
String. Date (DD-Mmm-YYYY) when the document will be signed
Examples
str <- SignaturesTableRow$new(
name = 'Harry Styles',
department = 'eCompliance',
date = '15-Feb-2024')