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

com.aliyun.dingtalktrip_1_0.models.SyncInvoiceEntityRequest 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.dingtalktrip_1_0.models;

import com.aliyun.tea.*;

public class SyncInvoiceEntityRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

ding89233847892ndkas

*/ @NameInMap("channelCorpId") public String channelCorpId; /** * if can be null: *

true

*/ @NameInMap("delAll") public Boolean delAll; @NameInMap("entityList") public java.util.List entityList; /** *

This parameter is required.

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

This parameter is required.

* * example: *

20881001829000

*/ @NameInMap("userId") public String userId; public static SyncInvoiceEntityRequest build(java.util.Map map) throws Exception { SyncInvoiceEntityRequest self = new SyncInvoiceEntityRequest(); return TeaModel.build(map, self); } public SyncInvoiceEntityRequest setChannelCorpId(String channelCorpId) { this.channelCorpId = channelCorpId; return this; } public String getChannelCorpId() { return this.channelCorpId; } public SyncInvoiceEntityRequest setDelAll(Boolean delAll) { this.delAll = delAll; return this; } public Boolean getDelAll() { return this.delAll; } public SyncInvoiceEntityRequest setEntityList(java.util.List entityList) { this.entityList = entityList; return this; } public java.util.List getEntityList() { return this.entityList; } public SyncInvoiceEntityRequest setInvoiceId(String invoiceId) { this.invoiceId = invoiceId; return this; } public String getInvoiceId() { return this.invoiceId; } public SyncInvoiceEntityRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public static class SyncInvoiceEntityRequestEntityList extends TeaModel { /** *

This parameter is required.

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

This parameter is required.

*/ @NameInMap("entityType") public String entityType; public static SyncInvoiceEntityRequestEntityList build(java.util.Map map) throws Exception { SyncInvoiceEntityRequestEntityList self = new SyncInvoiceEntityRequestEntityList(); return TeaModel.build(map, self); } public SyncInvoiceEntityRequestEntityList setEntityId(String entityId) { this.entityId = entityId; return this; } public String getEntityId() { return this.entityId; } public SyncInvoiceEntityRequestEntityList setEntityType(String entityType) { this.entityType = entityType; return this; } public String getEntityType() { return this.entityType; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy