com.aliyun.dingtalkedu_1_0.models.DeductPointRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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:
*
*/
@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;
}
}