name = data_get($data, PaymentPlan::FIELD_DEPOSIT_LIST_NAME, ""); $this->amount = data_get($data, PaymentPlan::FIELD_DEPOSIT_LIST_AMOUNT, 0); parent::__construct($data); } public function toArray(): array { return [ PaymentPlan::FIELD_DEPOSIT_LIST_NAME => $this->name, PaymentPlan::FIELD_DEPOSIT_LIST_AMOUNT => $this->amount, ]; } }