com.antgroup.antchain.openapi.twc.models.StubExtraInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class StubExtraInfo extends TeaModel {
// 票面视觉
@NameInMap("ticket_vision")
public String ticketVision;
public static StubExtraInfo build(java.util.Map map) throws Exception {
StubExtraInfo self = new StubExtraInfo();
return TeaModel.build(map, self);
}
public StubExtraInfo setTicketVision(String ticketVision) {
this.ticketVision = ticketVision;
return this;
}
public String getTicketVision() {
return this.ticketVision;
}
}