Remind::PDF::Multi->create_from_stream($in,$specials_accepted)
This method reads data from an open file handle $in. $specials_accepted is a hashref of SPECIAL reminder
types to accept; the key is the name of the SPECIAL (all lower-case) and the value should be 1. Any
SPECIAL reminders not in the hash are ignored.
This function returns a two-element array: "($obj, $err)". On success, $obj will be a
"Remind::PDF::Multi" object and $err will be undef. On failure, $obj will be undef and $err will be an
error message.
Remind::PDF::Multi->create_from_json($json,$specials_accepted)
This method takes data from a JSON string <$json>. $specials_accepted is a hashref of SPECIAL reminder
types to accept; the key is the name of the SPECIAL (all lower-case) and the value should be 1. Any
SPECIAL reminders not in the hash are ignored.
This function returns a two-element array: "($obj, $err)". On success, $obj will be a
"Remind::PDF::Multi" object and $err will be undef. On failure, $obj will be undef and $err will be an
error message.