50 return "Bounce [timestamp=" . $this->timestamp .
51 ", contact=" . $this->contact->toString() .
52 ", mailingId=" . $this->mailingId .
53 ", type=" . $this->type .
54 ", statusCode=" . $this->statusCode .
55 ", source=" . $this->source .
"]";
64 return $this->timestamp .
65 ";" . $this->contact->toCsvString() .
66 ";" . $this->mailingId .
68 ";" . $this->statusCode .
81 $this->contact->fromXML($xmlElement->contact);
83 if (isset($xmlElement->mailing_id)) $this->mailingId = $xmlElement->mailing_id;
84 if (isset($xmlElement->timestamp)) $this->timestamp = $xmlElement->timestamp;
85 if (isset($xmlElement->type)) $this->type = $xmlElement->type;
86 if (isset($xmlElement->status_code)) $this->statusCode = $xmlElement->status_code;
87 if (isset($xmlElement->source)) $this->source = $xmlElement->source;