![JAR search and dependency download from the Maven repository](/logo.png)
net.sinofool.wechat.WeChatJSAPIConfig Maven / Gradle / Ivy
The newest version!
package net.sinofool.wechat;
public class WeChatJSAPIConfig {
private String appId;
private int timestamp;
private String nonce;
private String signature;
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public int getTimestamp() {
return timestamp;
}
public void setTimestamp(int timestamp) {
this.timestamp = timestamp;
}
public String getNonce() {
return nonce;
}
public void setNonce(String nonce) {
this.nonce = nonce;
}
public String getSignature() {
return signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy