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

com.aliyun.dingtalkorg_culture_1_0.models.UpdateAutoIssuePointRequest 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.dingtalkorg_culture_1_0.models;

import com.aliyun.tea.*;

public class UpdateAutoIssuePointRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

100

*/ @NameInMap("pointAutoNum") public Long pointAutoNum; /** *

This parameter is required.

* * example: *

true

*/ @NameInMap("pointAutoState") public Boolean pointAutoState; /** *

This parameter is required.

* * example: *

15

*/ @NameInMap("pointAutoTime") public Long pointAutoTime; /** *

This parameter is required.

* * example: *

11185568-1380470824

*/ @NameInMap("userId") public String userId; public static UpdateAutoIssuePointRequest build(java.util.Map map) throws Exception { UpdateAutoIssuePointRequest self = new UpdateAutoIssuePointRequest(); return TeaModel.build(map, self); } public UpdateAutoIssuePointRequest setPointAutoNum(Long pointAutoNum) { this.pointAutoNum = pointAutoNum; return this; } public Long getPointAutoNum() { return this.pointAutoNum; } public UpdateAutoIssuePointRequest setPointAutoState(Boolean pointAutoState) { this.pointAutoState = pointAutoState; return this; } public Boolean getPointAutoState() { return this.pointAutoState; } public UpdateAutoIssuePointRequest setPointAutoTime(Long pointAutoTime) { this.pointAutoTime = pointAutoTime; return this; } public Long getPointAutoTime() { return this.pointAutoTime; } public UpdateAutoIssuePointRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy