com.github.charlemaznable.varys.resp.WechatTpAuthTokenResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of varys-java-driver Show documentation
Show all versions of varys-java-driver Show documentation
Java client for varys(https://github.com/CharLemAznable/varys).
package com.github.charlemaznable.varys.resp;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public final class WechatTpAuthTokenResp {
private String error;
private String appId;
private String authorizerAppId;
private String token;
private String ticket;
}