cn.authing.sdk.java.dto.GetPushCodeRelationAppsDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GetPushCodeRelationAppsDto {
/**
* 发起推送登录的应用 ID
*/
@JsonProperty("appId")
private String appId;
/**
* 推送码(推送登录唯一 ID)
*/
@JsonProperty("pushCodeId")
private String pushCodeId;
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getPushCodeId() {
return pushCodeId;
}
public void setPushCodeId(String pushCodeId) {
this.pushCodeId = pushCodeId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy