All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riversoft.weixin.app.event.UserEnterSession Maven / Gradle / Ivy

The newest version!
package com.riversoft.weixin.app.event;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlCData;
import com.riversoft.weixin.common.event.EventRequest;

/**
 * @author borball on 12/29/2016.
 */
public class UserEnterSession extends EventRequest {

    @JsonProperty("SessionFrom")
    @JacksonXmlCData
    private String sessionFrom;

    public String getSessionFrom() {
        return sessionFrom;
    }

    public void setSessionFrom(String sessionFrom) {
        this.sessionFrom = sessionFrom;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy