com.aliyun.dingtalkfinance_1_0.models.CreateSubInstitutionResponseBody 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.dingtalkfinance_1_0.models;
import com.aliyun.tea.*;
public class CreateSubInstitutionResponseBody extends TeaModel {
// 进件申请单号
@NameInMap("orderId")
public String orderId;
public static CreateSubInstitutionResponseBody build(java.util.Map map) throws Exception {
CreateSubInstitutionResponseBody self = new CreateSubInstitutionResponseBody();
return TeaModel.build(map, self);
}
public CreateSubInstitutionResponseBody setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
}