Example code ```scala val client = PulsarClient("pulsar://localhost:6650") val producer_topic = Topic("test") val producer = client.producer[String](ProducerConfig(producer_topic)) producer.send("Hello,World,1") ``` When sending this as a String and receiving a Array[Byte] pulsar4s does not strip the "" within the producer.send function