id; } public function getBody(): ?string { return $this->body; } public function setBody(string $body): static { $this->body = $body; return $this; } public function getCreatedAt(): ?\DateTimeInterface { return $this->created_at; } public function setCreatedAt(\DateTimeInterface $created_at): static { $this->created_at = $created_at; return $this; } public function getUpdatedAt(): ?\DateTimeInterface { return $this->updated_at; } public function setUpdatedAt(?\DateTimeInterface $updated_at): static { $this->updated_at = $updated_at; return $this; } public function isIsPublic(): ?bool { return $this->is_public; } public function setIsPublic(bool $is_public): static { $this->is_public = $is_public; return $this; } public function getAttachmentLocation(): ?string { return $this->attachment_location; } public function setAttachmentLocation(?string $attachment_location): static { $this->attachment_location = $attachment_location; return $this; } public function getAttachmentContentType(): ?string { return $this->attachment_content_type; } public function setAttachmentContentType(?string $attachment_content_type): static { $this->attachment_content_type = $attachment_content_type; return $this; } public function getAttachmentName(): ?string { return $this->attachment_name; } public function setAttachmentName(?string $attachment_name): static { $this->attachment_name = $attachment_name; return $this; } public function isIsPurchase(): ?bool { return $this->is_purchase; } public function setIsPurchase(bool $is_purchase): static { $this->is_purchase = $is_purchase; return $this; } public function getCommentType(): ?string { return $this->comment_type; } public function setCommentType(string $comment_type): static { $this->comment_type = $comment_type; return $this; } public function getAttachmentSize(): ?int { return $this->attachment_size; } public function setAttachmentSize(?int $attachment_size): static { $this->attachment_size = $attachment_size; return $this; } public function getTicket(): ?Ticket { return $this->ticket; } public function setTicket(?Ticket $ticket): static { $this->ticket = $ticket; return $this; } public function getCreatedBy(): ?User { return $this->created_by; } public function setCreatedBy(?User $created_by): static { $this->created_by = $created_by; return $this; } }