com.aliyun.dingtalkattendance_1_0.models.SalaryThirdDataIntegrationRequest 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.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class SalaryThirdDataIntegrationRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* atData
*/
@NameInMap("bizType")
public String bizType;
@NameInMap("items")
public java.util.List items;
public static SalaryThirdDataIntegrationRequest build(java.util.Map map) throws Exception {
SalaryThirdDataIntegrationRequest self = new SalaryThirdDataIntegrationRequest();
return TeaModel.build(map, self);
}
public SalaryThirdDataIntegrationRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public SalaryThirdDataIntegrationRequest setItems(java.util.List items) {
this.items = items;
return this;
}
public java.util.List getItems() {
return this.items;
}
public static class SalaryThirdDataIntegrationRequestItemsBizContents extends TeaModel {
/**
* example:
* 工作时长
*/
@NameInMap("key")
public String key;
/**
* example:
* 9
*/
@NameInMap("value")
public String value;
public static SalaryThirdDataIntegrationRequestItemsBizContents build(java.util.Map map) throws Exception {
SalaryThirdDataIntegrationRequestItemsBizContents self = new SalaryThirdDataIntegrationRequestItemsBizContents();
return TeaModel.build(map, self);
}
public SalaryThirdDataIntegrationRequestItemsBizContents setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public SalaryThirdDataIntegrationRequestItemsBizContents setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class SalaryThirdDataIntegrationRequestItems extends TeaModel {
@NameInMap("bizContents")
public java.util.List bizContents;
/**
* This parameter is required.
*/
@NameInMap("bizDate")
public String bizDate;
/**
* This parameter is required.
*
* example:
* 100001
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* user001
*/
@NameInMap("userId")
public String userId;
public static SalaryThirdDataIntegrationRequestItems build(java.util.Map map) throws Exception {
SalaryThirdDataIntegrationRequestItems self = new SalaryThirdDataIntegrationRequestItems();
return TeaModel.build(map, self);
}
public SalaryThirdDataIntegrationRequestItems setBizContents(java.util.List bizContents) {
this.bizContents = bizContents;
return this;
}
public java.util.List getBizContents() {
return this.bizContents;
}
public SalaryThirdDataIntegrationRequestItems setBizDate(String bizDate) {
this.bizDate = bizDate;
return this;
}
public String getBizDate() {
return this.bizDate;
}
public SalaryThirdDataIntegrationRequestItems setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public SalaryThirdDataIntegrationRequestItems setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}