class with methods for serializing via the yaml package
Methods
Method new()
Create a new YAML object
Arguments
path
(character) path to the cassette, excluding the cassette
directory and the file extension
Returns
A new YAML
object
Serializes the given hash using internal fxn write_yaml
Usage
YAML$serialize(x, path, bytes)
Arguments
x
(list) the object to serialize
path
(character) the file path
bytes
(logical) whether to preserve exact body bytes or not
Returns
(character) the YAML string to write to disk
Method deserialize()
Deserializes the content at the path using
yaml::yaml.load_file
Usage
YAML$deserialize(cassette)
Arguments
cassette
the current cassette object so it's properties can
be retrieved
Returns
(list) the deserialized object, an R list
Method clone()
The objects of this class are cloneable with this method.
Arguments
deep
Whether to make a deep clone.