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

com.aliyun.dingtalkwatt_1_0.models.CreateDeliveryPlanRequest 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.dingtalkwatt_1_0.models;

import com.aliyun.tea.*;

public class CreateDeliveryPlanRequest extends TeaModel {
    @NameInMap("content")
    public java.util.Map content;

    @NameInMap("endTime")
    public Long endTime;

    /**
     * example:
     * 

1028

*/ @NameInMap("resId") public String resId; @NameInMap("startTime") public Long startTime; @NameInMap("userIdList") public java.util.List userIdList; public static CreateDeliveryPlanRequest build(java.util.Map map) throws Exception { CreateDeliveryPlanRequest self = new CreateDeliveryPlanRequest(); return TeaModel.build(map, self); } public CreateDeliveryPlanRequest setContent(java.util.Map content) { this.content = content; return this; } public java.util.Map getContent() { return this.content; } public CreateDeliveryPlanRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public CreateDeliveryPlanRequest setResId(String resId) { this.resId = resId; return this; } public String getResId() { return this.resId; } public CreateDeliveryPlanRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public CreateDeliveryPlanRequest setUserIdList(java.util.List userIdList) { this.userIdList = userIdList; return this; } public java.util.List getUserIdList() { return this.userIdList; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy