com.alipay.api.domain.MiniAppClientVersionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 小程序客户端版本号信息
*
* @author auto create
* @since 1.0, 2019-03-27 21:26:56
*/
public class MiniAppClientVersionInfo extends AlipayObject {
private static final long serialVersionUID = 7229733921957669234L;
/**
* 最大客户端版本号信息
*/
@ApiField("max_client_version")
private String maxClientVersion;
/**
* 最小客户端版本号
*/
@ApiField("min_client_version")
private String minClientVersion;
public String getMaxClientVersion() {
return this.maxClientVersion;
}
public void setMaxClientVersion(String maxClientVersion) {
this.maxClientVersion = maxClientVersion;
}
public String getMinClientVersion() {
return this.minClientVersion;
}
public void setMinClientVersion(String minClientVersion) {
this.minClientVersion = minClientVersion;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy