statement_transaction_id = $statement_transaction_id; $this->type = $type; $this->system = $system; $this->owner_type = $owner_type; $this->owner_id = $owner_id; $this->invoice_reference = $invoice_reference; $this->receipt_reference = $receipt_reference; $this->is_auto_mapped = $is_auto_mapped; $this->status = $status; } /** * @return int */ public function getStatementTransactionId(): int { return $this->statement_transaction_id; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return string */ public function getOwnerType(): string { return $this->owner_type; } /** * @return int */ public function getOwnerId(): int { return $this->owner_id; } /** * @return string */ public function getSystem(): string { return $this->system; } /** * @return string */ public function getInvoiceReference(): string { return $this->invoice_reference; } /** * @return string */ public function getReceipteReference(): string { return $this->receipt_reference; } /** * @return Boolean */ public function getIsAutoMapped(): Boolean { return $this->is_auto_mapped; } /** * @return int */ public function getStatus(): int { return $this->status; } }