All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.byteplus.model.live.v20200801.GeneratePushURLBody Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.model.live.v20200801;


import com.alibaba.fastjson.JSON;

/**
 * GeneratePushURLBody
 */
@lombok.Data
public final class GeneratePushURLBody  {

    /**
     * 

域名空间名称

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Vhost") private String vhost; /** *

推流域名名称,需要推流地址的域名,不填返回Vhost下所有推流域名生成的地址

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Domain") private String domain; /** *

应用名称

*/ @com.alibaba.fastjson.annotation.JSONField(name = "App") private String app; /** *

流名称

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Stream") private String stream; /** *

有效时长,推流地址的有效时间,过期后需要重新生成。单位为秒,取值 ﹥0,缺省情况下表示 7 天。

* *

:::tip

* *

如果同时设置 `ValidDuration` 和 `ExpiredTime`,以 `ExpiredTime` 的时间为准。

* *

:::

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ValidDuration") private Integer validDuration; /** *

过期时间,推流地址的有效时间,过期后需要重新生成。RFC3339 格式的 UTC 时间,精度为秒,缺省情况下表示 7 天。

* *

:::tip

* *

如果同时设置 `ValidDuration` 和 `ExpiredTime`,以 `ExpiredTime` 的时间为准。

* *

:::

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ExpiredTime") private String expiredTime; @Override public String toString() { return JSON.toJSONString(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy