Skip to contents

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')


Method clone()

The objects of this class are cloneable with this method.

Usage

SignaturesTableRow$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples


## ------------------------------------------------
## Method `SignaturesTableRow$new`
## ------------------------------------------------

str <- SignaturesTableRow$new(
 name = 'Harry Styles',
 department = 'eCompliance',
 date = '15-Feb-2024')