cn.authing.sdk.java.dto.GetPushCodeRelationAppsDataDto 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 GetPushCodeRelationAppsDataDto {
/**
* 发起推送登录的应用关联的客户端应用数据
*/
@JsonProperty("appIds")
private List appIds;
public List getAppIds() {
return appIds;
}
public void setAppIds(List appIds) {
this.appIds = appIds;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy