com.aliyun.dingtalkedu_1_0.models.ProvidePointRequest 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 ProvidePointRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* action01
*/
@NameInMap("actionCode")
public String actionCode;
/**
* This parameter is required.
*
* example:
* biz01
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* personal
*/
@NameInMap("pointType")
public String pointType;
public static ProvidePointRequest build(java.util.Map map) throws Exception {
ProvidePointRequest self = new ProvidePointRequest();
return TeaModel.build(map, self);
}
public ProvidePointRequest setActionCode(String actionCode) {
this.actionCode = actionCode;
return this;
}
public String getActionCode() {
return this.actionCode;
}
public ProvidePointRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public ProvidePointRequest setPointType(String pointType) {
this.pointType = pointType;
return this;
}
public String getPointType() {
return this.pointType;
}
}