add method

add(name, value)

Adds a document variable to the collection.

def add(self, name: str, value: str):
    ...
ParameterTypeDescription
namestrThe case-insensitive name of the variable to add.
valuestrThe value of the variable. The value cannot be None, if value is null empty string will be used instead.

See Also