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

com.aliyun.dingtalklive_1_0.models.QueryLiveWatchDetailRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalklive_1_0.models;

import com.aliyun.tea.*;

public class QueryLiveWatchDetailRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

1a353547-040d-4095-bb93-404bc5d47920

*/ @NameInMap("liveId") public String liveId; /** *

This parameter is required.

* * example: *

DC7wZGOSueEEIGOf3WKwWgiEiE

*/ @NameInMap("unionId") public String unionId; public static QueryLiveWatchDetailRequest build(java.util.Map map) throws Exception { QueryLiveWatchDetailRequest self = new QueryLiveWatchDetailRequest(); return TeaModel.build(map, self); } public QueryLiveWatchDetailRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveWatchDetailRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy