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

com.aliyun.dingtalkorg_culture_1_0.models.ConsumeUserPointsRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
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 ConsumeUserPointsRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

10

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

This parameter is required.

* * example: *

qwe123

*/ @NameInMap("outId") public String outId; /** * example: *

测试积分扣减

*/ @NameInMap("remark") public String remark; /** * example: *

OPEN_EMP_POINT_CONSUME_DEFAULT

*/ @NameInMap("usage") public String usage; public static ConsumeUserPointsRequest build(java.util.Map map) throws Exception { ConsumeUserPointsRequest self = new ConsumeUserPointsRequest(); return TeaModel.build(map, self); } public ConsumeUserPointsRequest setAmount(Long amount) { this.amount = amount; return this; } public Long getAmount() { return this.amount; } public ConsumeUserPointsRequest setOutId(String outId) { this.outId = outId; return this; } public String getOutId() { return this.outId; } public ConsumeUserPointsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ConsumeUserPointsRequest setUsage(String usage) { this.usage = usage; return this; } public String getUsage() { return this.usage; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy