com.volcengine.service.vms.response.QualificationInfoQueryVO 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.service.vms.response;
import lombok.Data;
import java.util.List;
/**
* @author wangyang
* @date 2021/3/12
*/
@Data
public class QualificationInfoQueryVO {
/**
* 查询结果
*/
private List records;
/**
* 大小
**/
private Integer limit;
/**
* 偏移量
**/
private Integer offset;
/**
* 总量
*/
private Integer total;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy