applyAcl; } public function copyAttachments(): bool { return $this->copyAttachments; } /** * To apply ACL. */ public function withApplyAcl(bool $applyAcl = true): self { $obj = clone $this; $obj->applyAcl = $applyAcl; return $obj; } /** * To copy template attachments records. */ public function withCopyAttachments(bool $copyAttachments = true): self { $obj = clone $this; $obj->copyAttachments = $copyAttachments; return $obj; } public static function create(): self { return new self(); } }