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

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

There is a newer version: 2.1.30
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 EditFeedReplayRequest extends TeaModel {
    // 剪辑的结束位置的时间戳(在原开始结束的时间戳之内)
    @NameInMap("editEndTime")
    public Long editEndTime;

    // 剪辑的起始位置的时间戳(在原开始结束的时间戳之内)
    @NameInMap("editStartTime")
    public Long editStartTime;

    // 用户id(剪辑者的组织内id)
    @NameInMap("userId")
    public String userId;

    public static EditFeedReplayRequest build(java.util.Map map) throws Exception {
        EditFeedReplayRequest self = new EditFeedReplayRequest();
        return TeaModel.build(map, self);
    }

    public EditFeedReplayRequest setEditEndTime(Long editEndTime) {
        this.editEndTime = editEndTime;
        return this;
    }
    public Long getEditEndTime() {
        return this.editEndTime;
    }

    public EditFeedReplayRequest setEditStartTime(Long editStartTime) {
        this.editStartTime = editStartTime;
        return this;
    }
    public Long getEditStartTime() {
        return this.editStartTime;
    }

    public EditFeedReplayRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy