com.volcengine.model.live.v20230101.ListRelaySourceV4Body 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.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* ListRelaySourceV4Body
*/
@lombok.Data
public final class ListRelaySourceV4Body {
/**
* 直播流使用的域名。您可以调用 [ListDomainDetail](https://www.volcengine.com/docs/6469/1126815) 接口或在视频直播控制台的[域名管理](https://console.volcengine.com/live/main/domain/list)页面,查看直播流使用的域名。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Domain")
private String domain;
/**
* 查询数据的页码,默认为 1,表示查询第一页的数据。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Page")
private Integer page;
/**
* 每页显示的数据条数,默认为 20,最大值为 500。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Size")
private Integer size;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy