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

com.tencentcloudapi.live.v20180801.models.DescribeLiveTranscodeDetailInfoRequest Maven / Gradle / Ivy

/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.tencentcloudapi.live.v20180801.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class DescribeLiveTranscodeDetailInfoRequest extends AbstractModel{

    /**
    * 推流域名。
    */
    @SerializedName("PushDomain")
    @Expose
    private String PushDomain;

    /**
    * 流名称。
    */
    @SerializedName("StreamName")
    @Expose
    private String StreamName;

    /**
    * 查询时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内某天的详细数据,截止到昨天。
    */
    @SerializedName("DayTime")
    @Expose
    private String DayTime;

    /**
    * 页数,默认1,
不超过100页。
    */
    @SerializedName("PageNum")
    @Expose
    private Long PageNum;

    /**
    * 每页个数,默认20,
范围:[10,1000]。
    */
    @SerializedName("PageSize")
    @Expose
    private Long PageSize;

    /**
    * 起始天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据。
    */
    @SerializedName("StartDayTime")
    @Expose
    private String StartDayTime;

    /**
    * 结束天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。
    */
    @SerializedName("EndDayTime")
    @Expose
    private String EndDayTime;

    /**
     * Get 推流域名。 
     * @return PushDomain 推流域名。
     */
    public String getPushDomain() {
        return this.PushDomain;
    }

    /**
     * Set 推流域名。
     * @param PushDomain 推流域名。
     */
    public void setPushDomain(String PushDomain) {
        this.PushDomain = PushDomain;
    }

    /**
     * Get 流名称。 
     * @return StreamName 流名称。
     */
    public String getStreamName() {
        return this.StreamName;
    }

    /**
     * Set 流名称。
     * @param StreamName 流名称。
     */
    public void setStreamName(String StreamName) {
        this.StreamName = StreamName;
    }

    /**
     * Get 查询时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内某天的详细数据,截止到昨天。 
     * @return DayTime 查询时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内某天的详细数据,截止到昨天。
     */
    public String getDayTime() {
        return this.DayTime;
    }

    /**
     * Set 查询时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内某天的详细数据,截止到昨天。
     * @param DayTime 查询时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内某天的详细数据,截止到昨天。
     */
    public void setDayTime(String DayTime) {
        this.DayTime = DayTime;
    }

    /**
     * Get 页数,默认1,
不超过100页。 
     * @return PageNum 页数,默认1,
不超过100页。
     */
    public Long getPageNum() {
        return this.PageNum;
    }

    /**
     * Set 页数,默认1,
不超过100页。
     * @param PageNum 页数,默认1,
不超过100页。
     */
    public void setPageNum(Long PageNum) {
        this.PageNum = PageNum;
    }

    /**
     * Get 每页个数,默认20,
范围:[10,1000]。 
     * @return PageSize 每页个数,默认20,
范围:[10,1000]。
     */
    public Long getPageSize() {
        return this.PageSize;
    }

    /**
     * Set 每页个数,默认20,
范围:[10,1000]。
     * @param PageSize 每页个数,默认20,
范围:[10,1000]。
     */
    public void setPageSize(Long PageSize) {
        this.PageSize = PageSize;
    }

    /**
     * Get 起始天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据。 
     * @return StartDayTime 起始天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据。
     */
    public String getStartDayTime() {
        return this.StartDayTime;
    }

    /**
     * Set 起始天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据。
     * @param StartDayTime 起始天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据。
     */
    public void setStartDayTime(String StartDayTime) {
        this.StartDayTime = StartDayTime;
    }

    /**
     * Get 结束天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。 
     * @return EndDayTime 结束天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。
     */
    public String getEndDayTime() {
        return this.EndDayTime;
    }

    /**
     * Set 结束天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。
     * @param EndDayTime 结束天时间,北京时间,
格式:yyyymmdd。
注意:支持查询近1个月内的详细数据,截止到昨天,注意DayTime 与(StartDayTime,EndDayTime)必须要传一个,如果都传,会以DayTime为准 。
     */
    public void setEndDayTime(String EndDayTime) {
        this.EndDayTime = EndDayTime;
    }

    public DescribeLiveTranscodeDetailInfoRequest() {
    }

    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public DescribeLiveTranscodeDetailInfoRequest(DescribeLiveTranscodeDetailInfoRequest source) {
        if (source.PushDomain != null) {
            this.PushDomain = new String(source.PushDomain);
        }
        if (source.StreamName != null) {
            this.StreamName = new String(source.StreamName);
        }
        if (source.DayTime != null) {
            this.DayTime = new String(source.DayTime);
        }
        if (source.PageNum != null) {
            this.PageNum = new Long(source.PageNum);
        }
        if (source.PageSize != null) {
            this.PageSize = new Long(source.PageSize);
        }
        if (source.StartDayTime != null) {
            this.StartDayTime = new String(source.StartDayTime);
        }
        if (source.EndDayTime != null) {
            this.EndDayTime = new String(source.EndDayTime);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "PushDomain", this.PushDomain);
        this.setParamSimple(map, prefix + "StreamName", this.StreamName);
        this.setParamSimple(map, prefix + "DayTime", this.DayTime);
        this.setParamSimple(map, prefix + "PageNum", this.PageNum);
        this.setParamSimple(map, prefix + "PageSize", this.PageSize);
        this.setParamSimple(map, prefix + "StartDayTime", this.StartDayTime);
        this.setParamSimple(map, prefix + "EndDayTime", this.EndDayTime);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy