com.github.sd4324530.fastweixin.message.req.MenuEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastweixin Show documentation
Show all versions of fastweixin Show documentation
quickly department weixin server
package com.github.sd4324530.fastweixin.message.req;
public final class MenuEvent extends BaseEvent {
private String eventKey;
public MenuEvent(String eventKey) {
super();
this.eventKey = eventKey;
}
public String getEventKey() {
return eventKey;
}
@Override
public String getEvent() {
return super.getEvent();
}
@Override
public String toString() {
return "MenuEvent [eventKey=" + eventKey + ", toUserName=" + toUserName
+ ", fromUserName=" + fromUserName + ", createTime="
+ createTime + ", msgType=" + msgType + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy