Content resolution example with Spring Cloud Stream

Well … from the Solace AWS Broker “Try Me!” page I tried sending both binary and text messages.
The payload in the message text box was


{\"name\":\"Miles Archer\"}

Changed my simple PersonEvent to be


@JsonInclude(JsonInclude.Include.NON_NULL)
public class PersonEvent {

    @JsonProperty("name")
    private String name;

    public String getName() {
        return name;
}

    public void setName(String name) {
        this.name = name;
}

    public PersonEvent(String name) {
        this.name = name;
}


    public PersonEvent() {
    


}

Still … I am not able to deserialize the message.
So was hoping there was some lab or github examples with Solace that you can point me to that has this all working with both publishing and receiving messages.