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

com.aliyun.dingtalkedu_1_0.models.DeductPointRequest 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.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class DeductPointRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

biz01

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

This parameter is required.

* * example: *

兑换商品

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

This parameter is required.

* * example: *

https://www.dingtalk.com/

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

This parameter is required.

*/ @NameInMap("deductNum") public Integer deductNum; /** *

This parameter is required.

* * example: *

personal

*/ @NameInMap("pointType") public String pointType; public static DeductPointRequest build(java.util.Map map) throws Exception { DeductPointRequest self = new DeductPointRequest(); return TeaModel.build(map, self); } public DeductPointRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public DeductPointRequest setDeductDesc(String deductDesc) { this.deductDesc = deductDesc; return this; } public String getDeductDesc() { return this.deductDesc; } public DeductPointRequest setDeductDetailUrl(String deductDetailUrl) { this.deductDetailUrl = deductDetailUrl; return this; } public String getDeductDetailUrl() { return this.deductDetailUrl; } public DeductPointRequest setDeductNum(Integer deductNum) { this.deductNum = deductNum; return this; } public Integer getDeductNum() { return this.deductNum; } public DeductPointRequest setPointType(String pointType) { this.pointType = pointType; return this; } public String getPointType() { return this.pointType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy