com.volcengine.service.vms.model.NumberList 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.model;
import lombok.Data;
import java.util.List;
/**
* @Author: chenhui
* @Date: 2022/11/18
* @Description:
*/
@Data
public class NumberList {
private Integer limit;
private Long offset;
private Long total;
private List records;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy