com.volcengine.model.acep.CreateDisplayLayoutMiniResResult 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;
/**
* CreateDisplayLayoutMiniResResult
*/
@lombok.Data
public final class CreateDisplayLayoutMiniResResult {
/**
* 屏幕布局 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DisplayLayoutId")
private String displayLayoutId;
/**
* 屏幕宽度。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Width")
private Integer width;
/**
* 屏幕高度。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Height")
private Integer height;
/**
* 屏幕像素密度。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Density")
private Integer density;
/**
* 屏幕刷新率。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Fps")
private Integer fps;
/**
* 备注信息。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Extra")
private String extra;
/**
* 屏幕布局创建时间。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CreateAt")
private Long createAt;
/**
* 是否为系统屏幕布局配置。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "IsSystemConfig")
private Boolean isSystemConfig;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy