com.volcengine.model.acep.CreateDisplayLayoutMiniBody 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;
/**
* CreateDisplayLayoutMiniBody
*/
@lombok.Data
public final class CreateDisplayLayoutMiniBody {
/**
* 业务 ID,可在「云手机控制台-业务信息」中获取。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ProductId")
private String productId;
/**
* 屏幕布局 ID,支持的最大长度为 64 字节,只支持大小写字母、数字、下划线(_)、中划线(-),在同一业务下唯一,一个业务下最多可创建 100 个屏幕布局配置信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DisplayLayoutId")
private String displayLayoutId;
/**
* 屏幕宽度,取值范围在 [200, 2400] 区间的偶数,默认值为 1080,单位:px。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Width")
private Integer width;
/**
* 屏幕高度,取值范围在 [200, 2400] 区间的偶数,默认值为 1920,单位:px。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Height")
private Integer height;
/**
* 屏幕像素密度,单位:dpi。包含以下值:
*
* - 160
*
* - 240
*
* - 320(默认值)
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Density")
private Integer density;
/**
* 屏幕刷新率,单位:fps。包含以下值:
*
* - 30
*
* - 60(默认值)
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Fps")
private Integer fps;
/**
* 备注信息,长度不超过 32 字节。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Extra")
private String extra;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy