com.aliyun.dingtalkbizfinance_1_0.models.PushHistoricalReceiptsRequest 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.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class PushHistoricalReceiptsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizId")
public String bizId;
@NameInMap("endTime")
public Long endTime;
@NameInMap("forcedIgnoreDup")
public Boolean forcedIgnoreDup;
/**
* This parameter is required.
*/
@NameInMap("formCodeList")
public java.util.List formCodeList;
/**
* This parameter is required.
*/
@NameInMap("startTime")
public Long startTime;
public static PushHistoricalReceiptsRequest build(java.util.Map map) throws Exception {
PushHistoricalReceiptsRequest self = new PushHistoricalReceiptsRequest();
return TeaModel.build(map, self);
}
public PushHistoricalReceiptsRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public PushHistoricalReceiptsRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public PushHistoricalReceiptsRequest setForcedIgnoreDup(Boolean forcedIgnoreDup) {
this.forcedIgnoreDup = forcedIgnoreDup;
return this;
}
public Boolean getForcedIgnoreDup() {
return this.forcedIgnoreDup;
}
public PushHistoricalReceiptsRequest setFormCodeList(java.util.List formCodeList) {
this.formCodeList = formCodeList;
return this;
}
public java.util.List getFormCodeList() {
return this.formCodeList;
}
public PushHistoricalReceiptsRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}