static fromJSON(json = {}) {
        return new Letter({
            ...json,
            sender: json.sender ? Person.fromJSON(json.sender) : null,
            recipient: json.recipient ? Person.fromJSON(json.recipient) : null,