com.volcengine.model.acep.DetailAppVersionImageQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.acep;
import com.alibaba.fastjson.JSON;
/**
* DetailAppVersionImageQuery
*/
@lombok.Data
public final class DetailAppVersionImageQuery {
/**
* 业务 ID,可在「云手机控制台-业务管理-业务详情」中获取
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ProductId")
private String productId;
/**
* 应用ID,可选。如填写,则会严格校验。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AppId")
private String appId;
/**
* 版本ID,可选。如填写,则会严格校验。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AppVersionId")
private String appVersionId;
/**
* 应用镜像ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AppVersionImageId")
private String appVersionImageId;
/**
* 下载链接有效期,单位为小时。默认24小时,最长7*24小时。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Expire")
private Integer expire;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy