52 return "UniqueBounce [timestamp=" . $this->timestamp .
53 ", contact=" . $this->contact->toString() .
54 ", mailingId=" . $this->mailingId .
55 ", count=" . $this->count .
56 ", countHard=" . $this->countHard .
57 ", countSoft=" . $this->countSoft .
58 ", lastType=" . $this->lastType .
"]";
67 return $this->timestamp .
68 ";" . $this->contact->toCsvString() .
69 ";" . $this->mailingId .
71 ";" . $this->countHard .
72 ";" . $this->countSoft .
73 ";" . $this->lastType;
85 $this->contact->fromXML($xmlElement->contact);
87 if (isset($xmlElement->mailing_id)) $this->mailingId = $xmlElement->mailing_id;
88 if (isset($xmlElement->timestamp)) $this->timestamp = $xmlElement->timestamp;
89 if (isset($xmlElement->last_type)) $this->lastType = $xmlElement->last_type;
90 if (isset($xmlElement->count)) $this->count = $xmlElement->count;
91 if (isset($xmlElement->count_hard)) $this->countHard = $xmlElement->count_hard;
92 if (isset($xmlElement->count_soft)) $this->countSoft = $xmlElement->count_soft;