com.antgroup.antchain.openapi.demo.models.RouteCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class RouteCondition extends TeaModel {
// 渠道编号
@NameInMap("channel_id")
@Validation(required = true)
public String channelId;
public static RouteCondition build(java.util.Map map) throws Exception {
RouteCondition self = new RouteCondition();
return TeaModel.build(map, self);
}
public RouteCondition setChannelId(String channelId) {
this.channelId = channelId;
return this;
}
public String getChannelId() {
return this.channelId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy