index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryQrCodeUploadStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryQrCodeUploadStatusResponse} extends {@link TeaModel} * * <p>QueryQrCodeUploadStatusResponse</p> */ public class QueryQrCodeUploadStatusResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryQrCodeUploadStatusResponseBody body; private QueryQrCodeUploadStatusResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryQrCodeUploadStatusResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryQrCodeUploadStatusResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryQrCodeUploadStatusResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryQrCodeUploadStatusResponseBody body); @Override QueryQrCodeUploadStatusResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryQrCodeUploadStatusResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryQrCodeUploadStatusResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryQrCodeUploadStatusResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryQrCodeUploadStatusResponseBody body) { this.body = body; return this; } @Override public QueryQrCodeUploadStatusResponse build() { return new QueryQrCodeUploadStatusResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryQrCodeUploadStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryQrCodeUploadStatusResponseBody} extends {@link TeaModel} * * <p>QueryQrCodeUploadStatusResponseBody</p> */ public class QueryQrCodeUploadStatusResponseBody extends TeaModel { @NameInMap("OssKey") private String ossKey; @NameInMap("OssUrl") private String ossUrl; @NameInMap("RequestId") private String requestId; @NameInMap("Status") private Integer status; @NameInMap("Success") private Boolean success; private QueryQrCodeUploadStatusResponseBody(Builder builder) { this.ossKey = builder.ossKey; this.ossUrl = builder.ossUrl; this.requestId = builder.requestId; this.status = builder.status; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static QueryQrCodeUploadStatusResponseBody create() { return builder().build(); } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return ossUrl */ public String getOssUrl() { return this.ossUrl; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String ossKey; private String ossUrl; private String requestId; private Integer status; private Boolean success; /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * OssUrl. */ public Builder ossUrl(String ossUrl) { this.ossUrl = ossUrl; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public QueryQrCodeUploadStatusResponseBody build() { return new QueryQrCodeUploadStatusResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QuerySbjRuleRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QuerySbjRuleRequest} extends {@link RequestModel} * * <p>QuerySbjRuleRequest</p> */ public class QuerySbjRuleRequest extends Request { @Query @NameInMap("BizType") private String bizType; @Query @NameInMap("RuleId") private String ruleId; private QuerySbjRuleRequest(Builder builder) { super(builder); this.bizType = builder.bizType; this.ruleId = builder.ruleId; } public static Builder builder() { return new Builder(); } public static QuerySbjRuleRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } public static final class Builder extends Request.Builder<QuerySbjRuleRequest, Builder> { private String bizType; private String ruleId; private Builder() { super(); } private Builder(QuerySbjRuleRequest request) { super(request); this.bizType = request.bizType; this.ruleId = request.ruleId; } /** * BizType. */ public Builder bizType(String bizType) { this.putQueryParameter("BizType", bizType); this.bizType = bizType; return this; } /** * RuleId. */ public Builder ruleId(String ruleId) { this.putQueryParameter("RuleId", ruleId); this.ruleId = ruleId; return this; } @Override public QuerySbjRuleRequest build() { return new QuerySbjRuleRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QuerySbjRuleResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QuerySbjRuleResponse} extends {@link TeaModel} * * <p>QuerySbjRuleResponse</p> */ public class QuerySbjRuleResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QuerySbjRuleResponseBody body; private QuerySbjRuleResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QuerySbjRuleResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QuerySbjRuleResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QuerySbjRuleResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QuerySbjRuleResponseBody body); @Override QuerySbjRuleResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QuerySbjRuleResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QuerySbjRuleResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QuerySbjRuleResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QuerySbjRuleResponseBody body) { this.body = body; return this; } @Override public QuerySbjRuleResponse build() { return new QuerySbjRuleResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QuerySbjRuleResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QuerySbjRuleResponseBody} extends {@link TeaModel} * * <p>QuerySbjRuleResponseBody</p> */ public class QuerySbjRuleResponseBody extends TeaModel { @NameInMap("BizType") private String bizType; @NameInMap("RequestId") private String requestId; @NameInMap("RuleId") private String ruleId; @NameInMap("SbjRuleList") private SbjRuleList sbjRuleList; private QuerySbjRuleResponseBody(Builder builder) { this.bizType = builder.bizType; this.requestId = builder.requestId; this.ruleId = builder.ruleId; this.sbjRuleList = builder.sbjRuleList; } public static Builder builder() { return new Builder(); } public static QuerySbjRuleResponseBody create() { return builder().build(); } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return sbjRuleList */ public SbjRuleList getSbjRuleList() { return this.sbjRuleList; } public static final class Builder { private String bizType; private String requestId; private String ruleId; private SbjRuleList sbjRuleList; /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * RuleId. */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * SbjRuleList. */ public Builder sbjRuleList(SbjRuleList sbjRuleList) { this.sbjRuleList = sbjRuleList; return this; } public QuerySbjRuleResponseBody build() { return new QuerySbjRuleResponseBody(this); } } public static class FrontendOption extends TeaModel { @NameInMap("title") private String title; @NameInMap("value") private String value; private FrontendOption(Builder builder) { this.title = builder.title; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static FrontendOption create() { return builder().build(); } /** * @return title */ public String getTitle() { return this.title; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String title; private String value; /** * title. */ public Builder title(String title) { this.title = title; return this; } /** * value. */ public Builder value(String value) { this.value = value; return this; } public FrontendOption build() { return new FrontendOption(this); } } } public static class FrontendOptions extends TeaModel { @NameInMap("FrontendOption") private java.util.List < FrontendOption> frontendOption; private FrontendOptions(Builder builder) { this.frontendOption = builder.frontendOption; } public static Builder builder() { return new Builder(); } public static FrontendOptions create() { return builder().build(); } /** * @return frontendOption */ public java.util.List < FrontendOption> getFrontendOption() { return this.frontendOption; } public static final class Builder { private java.util.List < FrontendOption> frontendOption; /** * FrontendOption. */ public Builder frontendOption(java.util.List < FrontendOption> frontendOption) { this.frontendOption = frontendOption; return this; } public FrontendOptions build() { return new FrontendOptions(this); } } } public static class SbjRuleItem extends TeaModel { @NameInMap("DefaultValue") private String defaultValue; @NameInMap("EspExtFieldName") private String espExtFieldName; @NameInMap("FieldName") private String fieldName; @NameInMap("FileType") private String fileType; @NameInMap("FrontendOptions") private FrontendOptions frontendOptions; @NameInMap("FrontendType") private String frontendType; @NameInMap("RequiredExpression") private String requiredExpression; @NameInMap("SbjFieldId") private String sbjFieldId; @NameInMap("ShowExpression") private String showExpression; @NameInMap("TrademarkServiceExpression") private String trademarkServiceExpression; @NameInMap("ValidateRegularExpression") private String validateRegularExpression; private SbjRuleItem(Builder builder) { this.defaultValue = builder.defaultValue; this.espExtFieldName = builder.espExtFieldName; this.fieldName = builder.fieldName; this.fileType = builder.fileType; this.frontendOptions = builder.frontendOptions; this.frontendType = builder.frontendType; this.requiredExpression = builder.requiredExpression; this.sbjFieldId = builder.sbjFieldId; this.showExpression = builder.showExpression; this.trademarkServiceExpression = builder.trademarkServiceExpression; this.validateRegularExpression = builder.validateRegularExpression; } public static Builder builder() { return new Builder(); } public static SbjRuleItem create() { return builder().build(); } /** * @return defaultValue */ public String getDefaultValue() { return this.defaultValue; } /** * @return espExtFieldName */ public String getEspExtFieldName() { return this.espExtFieldName; } /** * @return fieldName */ public String getFieldName() { return this.fieldName; } /** * @return fileType */ public String getFileType() { return this.fileType; } /** * @return frontendOptions */ public FrontendOptions getFrontendOptions() { return this.frontendOptions; } /** * @return frontendType */ public String getFrontendType() { return this.frontendType; } /** * @return requiredExpression */ public String getRequiredExpression() { return this.requiredExpression; } /** * @return sbjFieldId */ public String getSbjFieldId() { return this.sbjFieldId; } /** * @return showExpression */ public String getShowExpression() { return this.showExpression; } /** * @return trademarkServiceExpression */ public String getTrademarkServiceExpression() { return this.trademarkServiceExpression; } /** * @return validateRegularExpression */ public String getValidateRegularExpression() { return this.validateRegularExpression; } public static final class Builder { private String defaultValue; private String espExtFieldName; private String fieldName; private String fileType; private FrontendOptions frontendOptions; private String frontendType; private String requiredExpression; private String sbjFieldId; private String showExpression; private String trademarkServiceExpression; private String validateRegularExpression; /** * DefaultValue. */ public Builder defaultValue(String defaultValue) { this.defaultValue = defaultValue; return this; } /** * EspExtFieldName. */ public Builder espExtFieldName(String espExtFieldName) { this.espExtFieldName = espExtFieldName; return this; } /** * FieldName. */ public Builder fieldName(String fieldName) { this.fieldName = fieldName; return this; } /** * FileType. */ public Builder fileType(String fileType) { this.fileType = fileType; return this; } /** * FrontendOptions. */ public Builder frontendOptions(FrontendOptions frontendOptions) { this.frontendOptions = frontendOptions; return this; } /** * FrontendType. */ public Builder frontendType(String frontendType) { this.frontendType = frontendType; return this; } /** * RequiredExpression. */ public Builder requiredExpression(String requiredExpression) { this.requiredExpression = requiredExpression; return this; } /** * SbjFieldId. */ public Builder sbjFieldId(String sbjFieldId) { this.sbjFieldId = sbjFieldId; return this; } /** * ShowExpression. */ public Builder showExpression(String showExpression) { this.showExpression = showExpression; return this; } /** * TrademarkServiceExpression. */ public Builder trademarkServiceExpression(String trademarkServiceExpression) { this.trademarkServiceExpression = trademarkServiceExpression; return this; } /** * ValidateRegularExpression. */ public Builder validateRegularExpression(String validateRegularExpression) { this.validateRegularExpression = validateRegularExpression; return this; } public SbjRuleItem build() { return new SbjRuleItem(this); } } } public static class SbjRuleList extends TeaModel { @NameInMap("SbjRuleItem") private java.util.List < SbjRuleItem> sbjRuleItem; private SbjRuleList(Builder builder) { this.sbjRuleItem = builder.sbjRuleItem; } public static Builder builder() { return new Builder(); } public static SbjRuleList create() { return builder().build(); } /** * @return sbjRuleItem */ public java.util.List < SbjRuleItem> getSbjRuleItem() { return this.sbjRuleItem; } public static final class Builder { private java.util.List < SbjRuleItem> sbjRuleItem; /** * SbjRuleItem. */ public Builder sbjRuleItem(java.util.List < SbjRuleItem> sbjRuleItem) { this.sbjRuleItem = sbjRuleItem; return this; } public SbjRuleList build() { return new SbjRuleList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QuerySupplementDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QuerySupplementDetailRequest} extends {@link RequestModel} * * <p>QuerySupplementDetailRequest</p> */ public class QuerySupplementDetailRequest extends Request { @Query @NameInMap("Id") @Validation(required = true) private Long id; private QuerySupplementDetailRequest(Builder builder) { super(builder); this.id = builder.id; } public static Builder builder() { return new Builder(); } public static QuerySupplementDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return id */ public Long getId() { return this.id; } public static final class Builder extends Request.Builder<QuerySupplementDetailRequest, Builder> { private Long id; private Builder() { super(); } private Builder(QuerySupplementDetailRequest request) { super(request); this.id = request.id; } /** * Id. */ public Builder id(Long id) { this.putQueryParameter("Id", id); this.id = id; return this; } @Override public QuerySupplementDetailRequest build() { return new QuerySupplementDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QuerySupplementDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QuerySupplementDetailResponse} extends {@link TeaModel} * * <p>QuerySupplementDetailResponse</p> */ public class QuerySupplementDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QuerySupplementDetailResponseBody body; private QuerySupplementDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QuerySupplementDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QuerySupplementDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QuerySupplementDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QuerySupplementDetailResponseBody body); @Override QuerySupplementDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QuerySupplementDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QuerySupplementDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QuerySupplementDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QuerySupplementDetailResponseBody body) { this.body = body; return this; } @Override public QuerySupplementDetailResponse build() { return new QuerySupplementDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QuerySupplementDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QuerySupplementDetailResponseBody} extends {@link TeaModel} * * <p>QuerySupplementDetailResponseBody</p> */ public class QuerySupplementDetailResponseBody extends TeaModel { @NameInMap("AcceptDeadTime") private Long acceptDeadTime; @NameInMap("AcceptTime") private Long acceptTime; @NameInMap("Content") private String content; @NameInMap("FileName") private String fileName; @NameInMap("FileTemplateUrls") private FileTemplateUrls fileTemplateUrls; @NameInMap("Id") private Long id; @NameInMap("OperateTime") private Long operateTime; @NameInMap("Reason") private String reason; @NameInMap("RequestId") private String requestId; @NameInMap("SbjDeadTime") private Long sbjDeadTime; @NameInMap("SendTime") private Long sendTime; @NameInMap("SerialNumber") private String serialNumber; @NameInMap("Status") private Integer status; @NameInMap("TmNumber") private String tmNumber; @NameInMap("Type") private Integer type; @NameInMap("UploadFileTemplateUrl") private String uploadFileTemplateUrl; private QuerySupplementDetailResponseBody(Builder builder) { this.acceptDeadTime = builder.acceptDeadTime; this.acceptTime = builder.acceptTime; this.content = builder.content; this.fileName = builder.fileName; this.fileTemplateUrls = builder.fileTemplateUrls; this.id = builder.id; this.operateTime = builder.operateTime; this.reason = builder.reason; this.requestId = builder.requestId; this.sbjDeadTime = builder.sbjDeadTime; this.sendTime = builder.sendTime; this.serialNumber = builder.serialNumber; this.status = builder.status; this.tmNumber = builder.tmNumber; this.type = builder.type; this.uploadFileTemplateUrl = builder.uploadFileTemplateUrl; } public static Builder builder() { return new Builder(); } public static QuerySupplementDetailResponseBody create() { return builder().build(); } /** * @return acceptDeadTime */ public Long getAcceptDeadTime() { return this.acceptDeadTime; } /** * @return acceptTime */ public Long getAcceptTime() { return this.acceptTime; } /** * @return content */ public String getContent() { return this.content; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return fileTemplateUrls */ public FileTemplateUrls getFileTemplateUrls() { return this.fileTemplateUrls; } /** * @return id */ public Long getId() { return this.id; } /** * @return operateTime */ public Long getOperateTime() { return this.operateTime; } /** * @return reason */ public String getReason() { return this.reason; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return sbjDeadTime */ public Long getSbjDeadTime() { return this.sbjDeadTime; } /** * @return sendTime */ public Long getSendTime() { return this.sendTime; } /** * @return serialNumber */ public String getSerialNumber() { return this.serialNumber; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return type */ public Integer getType() { return this.type; } /** * @return uploadFileTemplateUrl */ public String getUploadFileTemplateUrl() { return this.uploadFileTemplateUrl; } public static final class Builder { private Long acceptDeadTime; private Long acceptTime; private String content; private String fileName; private FileTemplateUrls fileTemplateUrls; private Long id; private Long operateTime; private String reason; private String requestId; private Long sbjDeadTime; private Long sendTime; private String serialNumber; private Integer status; private String tmNumber; private Integer type; private String uploadFileTemplateUrl; /** * AcceptDeadTime. */ public Builder acceptDeadTime(Long acceptDeadTime) { this.acceptDeadTime = acceptDeadTime; return this; } /** * AcceptTime. */ public Builder acceptTime(Long acceptTime) { this.acceptTime = acceptTime; return this; } /** * Content. */ public Builder content(String content) { this.content = content; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * FileTemplateUrls. */ public Builder fileTemplateUrls(FileTemplateUrls fileTemplateUrls) { this.fileTemplateUrls = fileTemplateUrls; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * OperateTime. */ public Builder operateTime(Long operateTime) { this.operateTime = operateTime; return this; } /** * Reason. */ public Builder reason(String reason) { this.reason = reason; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * SbjDeadTime. */ public Builder sbjDeadTime(Long sbjDeadTime) { this.sbjDeadTime = sbjDeadTime; return this; } /** * SendTime. */ public Builder sendTime(Long sendTime) { this.sendTime = sendTime; return this; } /** * SerialNumber. */ public Builder serialNumber(String serialNumber) { this.serialNumber = serialNumber; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.tmNumber = tmNumber; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * UploadFileTemplateUrl. */ public Builder uploadFileTemplateUrl(String uploadFileTemplateUrl) { this.uploadFileTemplateUrl = uploadFileTemplateUrl; return this; } public QuerySupplementDetailResponseBody build() { return new QuerySupplementDetailResponseBody(this); } } public static class FileTemplateUrls extends TeaModel { @NameInMap("FileTemplateUrls") private java.util.List < String > fileTemplateUrls; private FileTemplateUrls(Builder builder) { this.fileTemplateUrls = builder.fileTemplateUrls; } public static Builder builder() { return new Builder(); } public static FileTemplateUrls create() { return builder().build(); } /** * @return fileTemplateUrls */ public java.util.List < String > getFileTemplateUrls() { return this.fileTemplateUrls; } public static final class Builder { private java.util.List < String > fileTemplateUrls; /** * FileTemplateUrls. */ public Builder fileTemplateUrls(java.util.List < String > fileTemplateUrls) { this.fileTemplateUrls = fileTemplateUrls; return this; } public FileTemplateUrls build() { return new FileTemplateUrls(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTaskListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTaskListRequest} extends {@link RequestModel} * * <p>QueryTaskListRequest</p> */ public class QueryTaskListRequest extends Request { @Query @NameInMap("BizType") @Validation(required = true) private String bizType; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; private QueryTaskListRequest(Builder builder) { super(builder); this.bizType = builder.bizType; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static QueryTaskListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<QueryTaskListRequest, Builder> { private String bizType; private Integer pageNum; private Integer pageSize; private Builder() { super(); } private Builder(QueryTaskListRequest request) { super(request); this.bizType = request.bizType; this.pageNum = request.pageNum; this.pageSize = request.pageSize; } /** * BizType. */ public Builder bizType(String bizType) { this.putQueryParameter("BizType", bizType); this.bizType = bizType; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public QueryTaskListRequest build() { return new QueryTaskListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTaskListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTaskListResponse} extends {@link TeaModel} * * <p>QueryTaskListResponse</p> */ public class QueryTaskListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTaskListResponseBody body; private QueryTaskListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTaskListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTaskListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTaskListResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTaskListResponseBody body); @Override QueryTaskListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTaskListResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTaskListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTaskListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTaskListResponseBody body) { this.body = body; return this; } @Override public QueryTaskListResponse build() { return new QueryTaskListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTaskListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTaskListResponseBody} extends {@link TeaModel} * * <p>QueryTaskListResponseBody</p> */ public class QueryTaskListResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTaskListResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTaskListResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Integer pageSize; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTaskListResponseBody build() { return new QueryTaskListResponseBody(this); } } public static class TaskList extends TeaModel { @NameInMap("CompleteTime") private Long completeTime; @NameInMap("CreateTime") private Long createTime; @NameInMap("ErrMsg") private String errMsg; @NameInMap("FileName") private String fileName; @NameInMap("Result") private String result; @NameInMap("TaskStatus") private String taskStatus; @NameInMap("TaskType") private String taskType; private TaskList(Builder builder) { this.completeTime = builder.completeTime; this.createTime = builder.createTime; this.errMsg = builder.errMsg; this.fileName = builder.fileName; this.result = builder.result; this.taskStatus = builder.taskStatus; this.taskType = builder.taskType; } public static Builder builder() { return new Builder(); } public static TaskList create() { return builder().build(); } /** * @return completeTime */ public Long getCompleteTime() { return this.completeTime; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return errMsg */ public String getErrMsg() { return this.errMsg; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return result */ public String getResult() { return this.result; } /** * @return taskStatus */ public String getTaskStatus() { return this.taskStatus; } /** * @return taskType */ public String getTaskType() { return this.taskType; } public static final class Builder { private Long completeTime; private Long createTime; private String errMsg; private String fileName; private String result; private String taskStatus; private String taskType; /** * CompleteTime. */ public Builder completeTime(Long completeTime) { this.completeTime = completeTime; return this; } /** * CreateTime. */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * ErrMsg. */ public Builder errMsg(String errMsg) { this.errMsg = errMsg; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Result. */ public Builder result(String result) { this.result = result; return this; } /** * TaskStatus. */ public Builder taskStatus(String taskStatus) { this.taskStatus = taskStatus; return this; } /** * TaskType. */ public Builder taskType(String taskType) { this.taskType = taskType; return this; } public TaskList build() { return new TaskList(this); } } } public static class Data extends TeaModel { @NameInMap("TaskList") private java.util.List < TaskList> taskList; private Data(Builder builder) { this.taskList = builder.taskList; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return taskList */ public java.util.List < TaskList> getTaskList() { return this.taskList; } public static final class Builder { private java.util.List < TaskList> taskList; /** * TaskList. */ public Builder taskList(java.util.List < TaskList> taskList) { this.taskList = taskList; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmCollectionPageListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmCollectionPageListRequest} extends {@link RequestModel} * * <p>QueryTmCollectionPageListRequest</p> */ public class QueryTmCollectionPageListRequest extends Request { @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; private QueryTmCollectionPageListRequest(Builder builder) { super(builder); this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static QueryTmCollectionPageListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<QueryTmCollectionPageListRequest, Builder> { private Integer pageNum; private Integer pageSize; private Builder() { super(); } private Builder(QueryTmCollectionPageListRequest request) { super(request); this.pageNum = request.pageNum; this.pageSize = request.pageSize; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public QueryTmCollectionPageListRequest build() { return new QueryTmCollectionPageListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmCollectionPageListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmCollectionPageListResponse} extends {@link TeaModel} * * <p>QueryTmCollectionPageListResponse</p> */ public class QueryTmCollectionPageListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTmCollectionPageListResponseBody body; private QueryTmCollectionPageListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTmCollectionPageListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTmCollectionPageListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTmCollectionPageListResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTmCollectionPageListResponseBody body); @Override QueryTmCollectionPageListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTmCollectionPageListResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTmCollectionPageListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTmCollectionPageListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTmCollectionPageListResponseBody body) { this.body = body; return this; } @Override public QueryTmCollectionPageListResponse build() { return new QueryTmCollectionPageListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmCollectionPageListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmCollectionPageListResponseBody} extends {@link TeaModel} * * <p>QueryTmCollectionPageListResponseBody</p> */ public class QueryTmCollectionPageListResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTmCollectionPageListResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTmCollectionPageListResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Integer pageSize; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTmCollectionPageListResponseBody build() { return new QueryTmCollectionPageListResponseBody(this); } } public static class Trademark extends TeaModel { @NameInMap("Classification") private String classification; @NameInMap("Collected") private Boolean collected; @NameInMap("CollectionContent") private String collectionContent; @NameInMap("Id") private Long id; @NameInMap("ItemId") private String itemId; @NameInMap("TmName") private String tmName; private Trademark(Builder builder) { this.classification = builder.classification; this.collected = builder.collected; this.collectionContent = builder.collectionContent; this.id = builder.id; this.itemId = builder.itemId; this.tmName = builder.tmName; } public static Builder builder() { return new Builder(); } public static Trademark create() { return builder().build(); } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return collected */ public Boolean getCollected() { return this.collected; } /** * @return collectionContent */ public String getCollectionContent() { return this.collectionContent; } /** * @return id */ public Long getId() { return this.id; } /** * @return itemId */ public String getItemId() { return this.itemId; } /** * @return tmName */ public String getTmName() { return this.tmName; } public static final class Builder { private String classification; private Boolean collected; private String collectionContent; private Long id; private String itemId; private String tmName; /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * Collected. */ public Builder collected(Boolean collected) { this.collected = collected; return this; } /** * CollectionContent. */ public Builder collectionContent(String collectionContent) { this.collectionContent = collectionContent; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ItemId. */ public Builder itemId(String itemId) { this.itemId = itemId; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } public Trademark build() { return new Trademark(this); } } } public static class Data extends TeaModel { @NameInMap("Trademark") private java.util.List < Trademark> trademark; private Data(Builder builder) { this.trademark = builder.trademark; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return trademark */ public java.util.List < Trademark> getTrademark() { return this.trademark; } public static final class Builder { private java.util.List < Trademark> trademark; /** * Trademark. */ public Builder trademark(java.util.List < Trademark> trademark) { this.trademark = trademark; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmSbjProduceDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmSbjProduceDetailRequest} extends {@link RequestModel} * * <p>QueryTmSbjProduceDetailRequest</p> */ public class QueryTmSbjProduceDetailRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("OrderId") private String orderId; private QueryTmSbjProduceDetailRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.orderId = builder.orderId; } public static Builder builder() { return new Builder(); } public static QueryTmSbjProduceDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return orderId */ public String getOrderId() { return this.orderId; } public static final class Builder extends Request.Builder<QueryTmSbjProduceDetailRequest, Builder> { private String bizId; private String orderId; private Builder() { super(); } private Builder(QueryTmSbjProduceDetailRequest request) { super(request); this.bizId = request.bizId; this.orderId = request.orderId; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.putQueryParameter("OrderId", orderId); this.orderId = orderId; return this; } @Override public QueryTmSbjProduceDetailRequest build() { return new QueryTmSbjProduceDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmSbjProduceDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmSbjProduceDetailResponse} extends {@link TeaModel} * * <p>QueryTmSbjProduceDetailResponse</p> */ public class QueryTmSbjProduceDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTmSbjProduceDetailResponseBody body; private QueryTmSbjProduceDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTmSbjProduceDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTmSbjProduceDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTmSbjProduceDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTmSbjProduceDetailResponseBody body); @Override QueryTmSbjProduceDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTmSbjProduceDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTmSbjProduceDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTmSbjProduceDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTmSbjProduceDetailResponseBody body) { this.body = body; return this; } @Override public QueryTmSbjProduceDetailResponse build() { return new QueryTmSbjProduceDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmSbjProduceDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmSbjProduceDetailResponseBody} extends {@link TeaModel} * * <p>QueryTmSbjProduceDetailResponseBody</p> */ public class QueryTmSbjProduceDetailResponseBody extends TeaModel { @NameInMap("AcceptUrl") private String acceptUrl; @NameInMap("BizId") private String bizId; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("Flags") private Flags flags; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("IssueDate") private String issueDate; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("MaterialDetail") private MaterialDetail materialDetail; @NameInMap("MaterialName") private String materialName; @NameInMap("Note") private String note; @NameInMap("OrderId") private String orderId; @NameInMap("PrincipalName") private Integer principalName; @NameInMap("RequestId") private String requestId; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private Integer status; @NameInMap("SubmitCount") private Integer submitCount; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("TmIcon") private String tmIcon; @NameInMap("TmName") private String tmName; @NameInMap("TmNameType") private Integer tmNameType; @NameInMap("TmNumber") private String tmNumber; @NameInMap("TmOrderId") private String tmOrderId; @NameInMap("Type") private Integer type; private QueryTmSbjProduceDetailResponseBody(Builder builder) { this.acceptUrl = builder.acceptUrl; this.bizId = builder.bizId; this.cnInfoUrl = builder.cnInfoUrl; this.extendInfo = builder.extendInfo; this.flags = builder.flags; this.grayIconUrl = builder.grayIconUrl; this.issueDate = builder.issueDate; this.leafCodes = builder.leafCodes; this.loaUrl = builder.loaUrl; this.materialDetail = builder.materialDetail; this.materialName = builder.materialName; this.note = builder.note; this.orderId = builder.orderId; this.principalName = builder.principalName; this.requestId = builder.requestId; this.rootCode = builder.rootCode; this.status = builder.status; this.submitCount = builder.submitCount; this.submitStatus = builder.submitStatus; this.tmIcon = builder.tmIcon; this.tmName = builder.tmName; this.tmNameType = builder.tmNameType; this.tmNumber = builder.tmNumber; this.tmOrderId = builder.tmOrderId; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static QueryTmSbjProduceDetailResponseBody create() { return builder().build(); } /** * @return acceptUrl */ public String getAcceptUrl() { return this.acceptUrl; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return flags */ public Flags getFlags() { return this.flags; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return issueDate */ public String getIssueDate() { return this.issueDate; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return materialDetail */ public MaterialDetail getMaterialDetail() { return this.materialDetail; } /** * @return materialName */ public String getMaterialName() { return this.materialName; } /** * @return note */ public String getNote() { return this.note; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return principalName */ public Integer getPrincipalName() { return this.principalName; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return submitCount */ public Integer getSubmitCount() { return this.submitCount; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return tmIcon */ public String getTmIcon() { return this.tmIcon; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return tmNameType */ public Integer getTmNameType() { return this.tmNameType; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return tmOrderId */ public String getTmOrderId() { return this.tmOrderId; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String acceptUrl; private String bizId; private String cnInfoUrl; private java.util.Map < String, ? > extendInfo; private Flags flags; private String grayIconUrl; private String issueDate; private LeafCodes leafCodes; private String loaUrl; private MaterialDetail materialDetail; private String materialName; private String note; private String orderId; private Integer principalName; private String requestId; private RootCode rootCode; private Integer status; private Integer submitCount; private String submitStatus; private String tmIcon; private String tmName; private Integer tmNameType; private String tmNumber; private String tmOrderId; private Integer type; /** * AcceptUrl. */ public Builder acceptUrl(String acceptUrl) { this.acceptUrl = acceptUrl; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * Flags. */ public Builder flags(Flags flags) { this.flags = flags; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * IssueDate. */ public Builder issueDate(String issueDate) { this.issueDate = issueDate; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * MaterialDetail. */ public Builder materialDetail(MaterialDetail materialDetail) { this.materialDetail = materialDetail; return this; } /** * MaterialName. */ public Builder materialName(String materialName) { this.materialName = materialName; return this; } /** * Note. */ public Builder note(String note) { this.note = note; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PrincipalName. */ public Builder principalName(Integer principalName) { this.principalName = principalName; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * SubmitCount. */ public Builder submitCount(Integer submitCount) { this.submitCount = submitCount; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * TmIcon. */ public Builder tmIcon(String tmIcon) { this.tmIcon = tmIcon; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * TmNameType. */ public Builder tmNameType(Integer tmNameType) { this.tmNameType = tmNameType; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.tmNumber = tmNumber; return this; } /** * TmOrderId. */ public Builder tmOrderId(String tmOrderId) { this.tmOrderId = tmOrderId; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public QueryTmSbjProduceDetailResponseBody build() { return new QueryTmSbjProduceDetailResponseBody(this); } } public static class Flags extends TeaModel { @NameInMap("Flags") private java.util.List < String > flags; private Flags(Builder builder) { this.flags = builder.flags; } public static Builder builder() { return new Builder(); } public static Flags create() { return builder().build(); } /** * @return flags */ public java.util.List < String > getFlags() { return this.flags; } public static final class Builder { private java.util.List < String > flags; /** * Flags. */ public Builder flags(java.util.List < String > flags) { this.flags = flags; return this; } public Flags build() { return new Flags(this); } } } public static class LeafCodesLeafCodes extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Name") private String name; private LeafCodesLeafCodes(Builder builder) { this.code = builder.code; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static LeafCodesLeafCodes create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String code; private String name; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public LeafCodesLeafCodes build() { return new LeafCodesLeafCodes(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("LeafCodes") private java.util.List < LeafCodesLeafCodes> leafCodes; private LeafCodes(Builder builder) { this.leafCodes = builder.leafCodes; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCodes */ public java.util.List < LeafCodesLeafCodes> getLeafCodes() { return this.leafCodes; } public static final class Builder { private java.util.List < LeafCodesLeafCodes> leafCodes; /** * LeafCodes. */ public Builder leafCodes(java.util.List < LeafCodesLeafCodes> leafCodes) { this.leafCodes = leafCodes; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialDetail extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("City") private String city; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactName") private String contactName; @NameInMap("ContactNumber") private String contactNumber; @NameInMap("ContactProvince") private String contactProvince; @NameInMap("ContactZipcode") private String contactZipcode; @NameInMap("Country") private String country; @NameInMap("DetailedContactAddress") private String detailedContactAddress; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("ExpirationDate") private String expirationDate; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private Integer personalType; @NameInMap("Province") private String province; @NameInMap("Region") private Integer region; @NameInMap("Status") private Integer status; @NameInMap("Town") private String town; @NameInMap("Type") private Integer type; private MaterialDetail(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.city = builder.city; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactName = builder.contactName; this.contactNumber = builder.contactNumber; this.contactProvince = builder.contactProvince; this.contactZipcode = builder.contactZipcode; this.country = builder.country; this.detailedContactAddress = builder.detailedContactAddress; this.eAddress = builder.eAddress; this.eName = builder.eName; this.expirationDate = builder.expirationDate; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.province = builder.province; this.region = builder.region; this.status = builder.status; this.town = builder.town; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialDetail create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return city */ public String getCity() { return this.city; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactName */ public String getContactName() { return this.contactName; } /** * @return contactNumber */ public String getContactNumber() { return this.contactNumber; } /** * @return contactProvince */ public String getContactProvince() { return this.contactProvince; } /** * @return contactZipcode */ public String getContactZipcode() { return this.contactZipcode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return detailedContactAddress */ public String getDetailedContactAddress() { return this.detailedContactAddress; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return expirationDate */ public String getExpirationDate() { return this.expirationDate; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public Integer getPersonalType() { return this.personalType; } /** * @return province */ public String getProvince() { return this.province; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return town */ public String getTown() { return this.town; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String city; private String contactAddress; private String contactEmail; private String contactName; private String contactNumber; private String contactProvince; private String contactZipcode; private String country; private String detailedContactAddress; private String eAddress; private String eName; private String expirationDate; private String idCardNumber; private String idCardUrl; private String loaUrl; private String name; private String passportUrl; private Integer personalType; private String province; private Integer region; private Integer status; private String town; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * City. */ public Builder city(String city) { this.city = city; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactName. */ public Builder contactName(String contactName) { this.contactName = contactName; return this; } /** * ContactNumber. */ public Builder contactNumber(String contactNumber) { this.contactNumber = contactNumber; return this; } /** * ContactProvince. */ public Builder contactProvince(String contactProvince) { this.contactProvince = contactProvince; return this; } /** * ContactZipcode. */ public Builder contactZipcode(String contactZipcode) { this.contactZipcode = contactZipcode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * DetailedContactAddress. */ public Builder detailedContactAddress(String detailedContactAddress) { this.detailedContactAddress = detailedContactAddress; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * ExpirationDate. */ public Builder expirationDate(String expirationDate) { this.expirationDate = expirationDate; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(Integer personalType) { this.personalType = personalType; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * Town. */ public Builder town(String town) { this.town = town; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialDetail build() { return new MaterialDetail(this); } } } public static class RootCode extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Name") private String name; private RootCode(Builder builder) { this.code = builder.code; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String code; private String name; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public RootCode build() { return new RootCode(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmSbjProduceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmSbjProduceRequest} extends {@link RequestModel} * * <p>QueryTmSbjProduceRequest</p> */ public class QueryTmSbjProduceRequest extends Request { @Query @NameInMap("HighPriorityBizTypeStr") private String highPriorityBizTypeStr; @Query @NameInMap("HighPriorityMaterialNameStr") private String highPriorityMaterialNameStr; @Query @NameInMap("HighPriorityOrderIdStr") private String highPriorityOrderIdStr; @Query @NameInMap("HighPriorityUserIdStr") private String highPriorityUserIdStr; @Query @NameInMap("PrincipalKey") private String principalKey; @Query @NameInMap("PrincipalName") private String principalName; @Query @NameInMap("ProducerType") private String producerType; @Query @NameInMap("QueryOrderPageSize") private Long queryOrderPageSize; private QueryTmSbjProduceRequest(Builder builder) { super(builder); this.highPriorityBizTypeStr = builder.highPriorityBizTypeStr; this.highPriorityMaterialNameStr = builder.highPriorityMaterialNameStr; this.highPriorityOrderIdStr = builder.highPriorityOrderIdStr; this.highPriorityUserIdStr = builder.highPriorityUserIdStr; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.producerType = builder.producerType; this.queryOrderPageSize = builder.queryOrderPageSize; } public static Builder builder() { return new Builder(); } public static QueryTmSbjProduceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return highPriorityBizTypeStr */ public String getHighPriorityBizTypeStr() { return this.highPriorityBizTypeStr; } /** * @return highPriorityMaterialNameStr */ public String getHighPriorityMaterialNameStr() { return this.highPriorityMaterialNameStr; } /** * @return highPriorityOrderIdStr */ public String getHighPriorityOrderIdStr() { return this.highPriorityOrderIdStr; } /** * @return highPriorityUserIdStr */ public String getHighPriorityUserIdStr() { return this.highPriorityUserIdStr; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return producerType */ public String getProducerType() { return this.producerType; } /** * @return queryOrderPageSize */ public Long getQueryOrderPageSize() { return this.queryOrderPageSize; } public static final class Builder extends Request.Builder<QueryTmSbjProduceRequest, Builder> { private String highPriorityBizTypeStr; private String highPriorityMaterialNameStr; private String highPriorityOrderIdStr; private String highPriorityUserIdStr; private String principalKey; private String principalName; private String producerType; private Long queryOrderPageSize; private Builder() { super(); } private Builder(QueryTmSbjProduceRequest request) { super(request); this.highPriorityBizTypeStr = request.highPriorityBizTypeStr; this.highPriorityMaterialNameStr = request.highPriorityMaterialNameStr; this.highPriorityOrderIdStr = request.highPriorityOrderIdStr; this.highPriorityUserIdStr = request.highPriorityUserIdStr; this.principalKey = request.principalKey; this.principalName = request.principalName; this.producerType = request.producerType; this.queryOrderPageSize = request.queryOrderPageSize; } /** * HighPriorityBizTypeStr. */ public Builder highPriorityBizTypeStr(String highPriorityBizTypeStr) { this.putQueryParameter("HighPriorityBizTypeStr", highPriorityBizTypeStr); this.highPriorityBizTypeStr = highPriorityBizTypeStr; return this; } /** * HighPriorityMaterialNameStr. */ public Builder highPriorityMaterialNameStr(String highPriorityMaterialNameStr) { this.putQueryParameter("HighPriorityMaterialNameStr", highPriorityMaterialNameStr); this.highPriorityMaterialNameStr = highPriorityMaterialNameStr; return this; } /** * HighPriorityOrderIdStr. */ public Builder highPriorityOrderIdStr(String highPriorityOrderIdStr) { this.putQueryParameter("HighPriorityOrderIdStr", highPriorityOrderIdStr); this.highPriorityOrderIdStr = highPriorityOrderIdStr; return this; } /** * HighPriorityUserIdStr. */ public Builder highPriorityUserIdStr(String highPriorityUserIdStr) { this.putQueryParameter("HighPriorityUserIdStr", highPriorityUserIdStr); this.highPriorityUserIdStr = highPriorityUserIdStr; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.putQueryParameter("PrincipalKey", principalKey); this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.putQueryParameter("PrincipalName", principalName); this.principalName = principalName; return this; } /** * ProducerType. */ public Builder producerType(String producerType) { this.putQueryParameter("ProducerType", producerType); this.producerType = producerType; return this; } /** * QueryOrderPageSize. */ public Builder queryOrderPageSize(Long queryOrderPageSize) { this.putQueryParameter("QueryOrderPageSize", queryOrderPageSize); this.queryOrderPageSize = queryOrderPageSize; return this; } @Override public QueryTmSbjProduceRequest build() { return new QueryTmSbjProduceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmSbjProduceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmSbjProduceResponse} extends {@link TeaModel} * * <p>QueryTmSbjProduceResponse</p> */ public class QueryTmSbjProduceResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTmSbjProduceResponseBody body; private QueryTmSbjProduceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTmSbjProduceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTmSbjProduceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTmSbjProduceResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTmSbjProduceResponseBody body); @Override QueryTmSbjProduceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTmSbjProduceResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTmSbjProduceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTmSbjProduceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTmSbjProduceResponseBody body) { this.body = body; return this; } @Override public QueryTmSbjProduceResponse build() { return new QueryTmSbjProduceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTmSbjProduceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTmSbjProduceResponseBody} extends {@link TeaModel} * * <p>QueryTmSbjProduceResponseBody</p> */ public class QueryTmSbjProduceResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; @NameInMap("RequestId") private String requestId; private QueryTmSbjProduceResponseBody(Builder builder) { this.moudle = builder.moudle; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static QueryTmSbjProduceResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Moudle moudle; private String requestId; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public QueryTmSbjProduceResponseBody build() { return new QueryTmSbjProduceResponseBody(this); } } public static class Extend extends TeaModel { @NameInMap("Bid") private Long bid; @NameInMap("BlackIcon") private Boolean blackIcon; @NameInMap("LoaOssKey") private String loaOssKey; @NameInMap("LogoGoodsId") private String logoGoodsId; @NameInMap("MaterialId") private String materialId; @NameInMap("SubmitCount") private Long submitCount; @NameInMap("TmNametype") private Long tmNametype; private Extend(Builder builder) { this.bid = builder.bid; this.blackIcon = builder.blackIcon; this.loaOssKey = builder.loaOssKey; this.logoGoodsId = builder.logoGoodsId; this.materialId = builder.materialId; this.submitCount = builder.submitCount; this.tmNametype = builder.tmNametype; } public static Builder builder() { return new Builder(); } public static Extend create() { return builder().build(); } /** * @return bid */ public Long getBid() { return this.bid; } /** * @return blackIcon */ public Boolean getBlackIcon() { return this.blackIcon; } /** * @return loaOssKey */ public String getLoaOssKey() { return this.loaOssKey; } /** * @return logoGoodsId */ public String getLogoGoodsId() { return this.logoGoodsId; } /** * @return materialId */ public String getMaterialId() { return this.materialId; } /** * @return submitCount */ public Long getSubmitCount() { return this.submitCount; } /** * @return tmNametype */ public Long getTmNametype() { return this.tmNametype; } public static final class Builder { private Long bid; private Boolean blackIcon; private String loaOssKey; private String logoGoodsId; private String materialId; private Long submitCount; private Long tmNametype; /** * Bid. */ public Builder bid(Long bid) { this.bid = bid; return this; } /** * BlackIcon. */ public Builder blackIcon(Boolean blackIcon) { this.blackIcon = blackIcon; return this; } /** * LoaOssKey. */ public Builder loaOssKey(String loaOssKey) { this.loaOssKey = loaOssKey; return this; } /** * LogoGoodsId. */ public Builder logoGoodsId(String logoGoodsId) { this.logoGoodsId = logoGoodsId; return this; } /** * MaterialId. */ public Builder materialId(String materialId) { this.materialId = materialId; return this; } /** * SubmitCount. */ public Builder submitCount(Long submitCount) { this.submitCount = submitCount; return this; } /** * TmNametype. */ public Builder tmNametype(Long tmNametype) { this.tmNametype = tmNametype; return this; } public Extend build() { return new Extend(this); } } } public static class TmSbjProduceList extends TeaModel { @NameInMap("BitFlag") private Long bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("DeleteFlag") private String deleteFlag; @NameInMap("Env") private String env; @NameInMap("Extend") private Extend extend; @NameInMap("LoaId") private Long loaId; @NameInMap("MainOrderId") private String mainOrderId; @NameInMap("MaterialId") private Long materialId; @NameInMap("MaterialName") private String materialName; @NameInMap("OrderId") private String orderId; @NameInMap("OrderPrice") private Float orderPrice; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProductType") private String productType; @NameInMap("RiskSource") private String riskSource; @NameInMap("Status") private String status; @NameInMap("SubmitAuditTime") private Long submitAuditTime; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTime") private Long submitTime; @NameInMap("SubmitTimes") private Long submitTimes; @NameInMap("TmCode") private String tmCode; @NameInMap("TmIcon") private String tmIcon; @NameInMap("TmName") private String tmName; @NameInMap("Type") private String type; @NameInMap("UserId") private String userId; private TmSbjProduceList(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.classificationCode = builder.classificationCode; this.deleteFlag = builder.deleteFlag; this.env = builder.env; this.extend = builder.extend; this.loaId = builder.loaId; this.mainOrderId = builder.mainOrderId; this.materialId = builder.materialId; this.materialName = builder.materialName; this.orderId = builder.orderId; this.orderPrice = builder.orderPrice; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.productType = builder.productType; this.riskSource = builder.riskSource; this.status = builder.status; this.submitAuditTime = builder.submitAuditTime; this.submitStatus = builder.submitStatus; this.submitTime = builder.submitTime; this.submitTimes = builder.submitTimes; this.tmCode = builder.tmCode; this.tmIcon = builder.tmIcon; this.tmName = builder.tmName; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static TmSbjProduceList create() { return builder().build(); } /** * @return bitFlag */ public Long getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return deleteFlag */ public String getDeleteFlag() { return this.deleteFlag; } /** * @return env */ public String getEnv() { return this.env; } /** * @return extend */ public Extend getExtend() { return this.extend; } /** * @return loaId */ public Long getLoaId() { return this.loaId; } /** * @return mainOrderId */ public String getMainOrderId() { return this.mainOrderId; } /** * @return materialId */ public Long getMaterialId() { return this.materialId; } /** * @return materialName */ public String getMaterialName() { return this.materialName; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return orderPrice */ public Float getOrderPrice() { return this.orderPrice; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return productType */ public String getProductType() { return this.productType; } /** * @return riskSource */ public String getRiskSource() { return this.riskSource; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitAuditTime */ public Long getSubmitAuditTime() { return this.submitAuditTime; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTime */ public Long getSubmitTime() { return this.submitTime; } /** * @return submitTimes */ public Long getSubmitTimes() { return this.submitTimes; } /** * @return tmCode */ public String getTmCode() { return this.tmCode; } /** * @return tmIcon */ public String getTmIcon() { return this.tmIcon; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Long bitFlag; private String bizId; private String classificationCode; private String deleteFlag; private String env; private Extend extend; private Long loaId; private String mainOrderId; private Long materialId; private String materialName; private String orderId; private Float orderPrice; private String principalKey; private String principalName; private String productType; private String riskSource; private String status; private Long submitAuditTime; private String submitStatus; private Long submitTime; private Long submitTimes; private String tmCode; private String tmIcon; private String tmName; private String type; private String userId; /** * BitFlag. */ public Builder bitFlag(Long bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * DeleteFlag. */ public Builder deleteFlag(String deleteFlag) { this.deleteFlag = deleteFlag; return this; } /** * Env. */ public Builder env(String env) { this.env = env; return this; } /** * Extend. */ public Builder extend(Extend extend) { this.extend = extend; return this; } /** * LoaId. */ public Builder loaId(Long loaId) { this.loaId = loaId; return this; } /** * MainOrderId. */ public Builder mainOrderId(String mainOrderId) { this.mainOrderId = mainOrderId; return this; } /** * MaterialId. */ public Builder materialId(Long materialId) { this.materialId = materialId; return this; } /** * MaterialName. */ public Builder materialName(String materialName) { this.materialName = materialName; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * OrderPrice. */ public Builder orderPrice(Float orderPrice) { this.orderPrice = orderPrice; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProductType. */ public Builder productType(String productType) { this.productType = productType; return this; } /** * RiskSource. */ public Builder riskSource(String riskSource) { this.riskSource = riskSource; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitAuditTime. */ public Builder submitAuditTime(Long submitAuditTime) { this.submitAuditTime = submitAuditTime; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTime. */ public Builder submitTime(Long submitTime) { this.submitTime = submitTime; return this; } /** * SubmitTimes. */ public Builder submitTimes(Long submitTimes) { this.submitTimes = submitTimes; return this; } /** * TmCode. */ public Builder tmCode(String tmCode) { this.tmCode = tmCode; return this; } /** * TmIcon. */ public Builder tmIcon(String tmIcon) { this.tmIcon = tmIcon; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public TmSbjProduceList build() { return new TmSbjProduceList(this); } } } public static class Moudle extends TeaModel { @NameInMap("TmSbjProduceList") private java.util.List < TmSbjProduceList> tmSbjProduceList; private Moudle(Builder builder) { this.tmSbjProduceList = builder.tmSbjProduceList; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return tmSbjProduceList */ public java.util.List < TmSbjProduceList> getTmSbjProduceList() { return this.tmSbjProduceList; } public static final class Builder { private java.util.List < TmSbjProduceList> tmSbjProduceList; /** * TmSbjProduceList. */ public Builder tmSbjProduceList(java.util.List < TmSbjProduceList> tmSbjProduceList) { this.tmSbjProduceList = tmSbjProduceList; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeIntentionUserListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeIntentionUserListRequest} extends {@link RequestModel} * * <p>QueryTradeIntentionUserListRequest</p> */ public class QueryTradeIntentionUserListRequest extends Request { @Query @NameInMap("Begin") private Long begin; @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("End") private Long end; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("Status") private Integer status; @Query @NameInMap("Type") private Integer type; private QueryTradeIntentionUserListRequest(Builder builder) { super(builder); this.begin = builder.begin; this.bizId = builder.bizId; this.end = builder.end; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.status = builder.status; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static QueryTradeIntentionUserListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return begin */ public Long getBegin() { return this.begin; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return end */ public Long getEnd() { return this.end; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder extends Request.Builder<QueryTradeIntentionUserListRequest, Builder> { private Long begin; private String bizId; private Long end; private Integer pageNum; private Integer pageSize; private Integer status; private Integer type; private Builder() { super(); } private Builder(QueryTradeIntentionUserListRequest request) { super(request); this.begin = request.begin; this.bizId = request.bizId; this.end = request.end; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.status = request.status; this.type = request.type; } /** * Begin. */ public Builder begin(Long begin) { this.putQueryParameter("Begin", begin); this.begin = begin; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * End. */ public Builder end(Long end) { this.putQueryParameter("End", end); this.end = end; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * Status. */ public Builder status(Integer status) { this.putQueryParameter("Status", status); this.status = status; return this; } /** * Type. */ public Builder type(Integer type) { this.putQueryParameter("Type", type); this.type = type; return this; } @Override public QueryTradeIntentionUserListRequest build() { return new QueryTradeIntentionUserListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeIntentionUserListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeIntentionUserListResponse} extends {@link TeaModel} * * <p>QueryTradeIntentionUserListResponse</p> */ public class QueryTradeIntentionUserListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeIntentionUserListResponseBody body; private QueryTradeIntentionUserListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeIntentionUserListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeIntentionUserListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeIntentionUserListResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeIntentionUserListResponseBody body); @Override QueryTradeIntentionUserListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeIntentionUserListResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeIntentionUserListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeIntentionUserListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeIntentionUserListResponseBody body) { this.body = body; return this; } @Override public QueryTradeIntentionUserListResponse build() { return new QueryTradeIntentionUserListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeIntentionUserListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeIntentionUserListResponseBody} extends {@link TeaModel} * * <p>QueryTradeIntentionUserListResponseBody</p> */ public class QueryTradeIntentionUserListResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTradeIntentionUserListResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTradeIntentionUserListResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Integer pageSize; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTradeIntentionUserListResponseBody build() { return new QueryTradeIntentionUserListResponseBody(this); } } public static class Trademark extends TeaModel { @NameInMap("BizId") private String bizId; @NameInMap("Classification") private String classification; @NameInMap("Description") private String description; @NameInMap("DocumentDate") private String documentDate; @NameInMap("DocumentName") private String documentName; @NameInMap("DocumentUrl") private String documentUrl; @NameInMap("Grade") private Integer grade; @NameInMap("Mobile") private String mobile; @NameInMap("RegisterNumber") private String registerNumber; @NameInMap("Status") private Integer status; @NameInMap("Type") private Integer type; @NameInMap("UserName") private String userName; private Trademark(Builder builder) { this.bizId = builder.bizId; this.classification = builder.classification; this.description = builder.description; this.documentDate = builder.documentDate; this.documentName = builder.documentName; this.documentUrl = builder.documentUrl; this.grade = builder.grade; this.mobile = builder.mobile; this.registerNumber = builder.registerNumber; this.status = builder.status; this.type = builder.type; this.userName = builder.userName; } public static Builder builder() { return new Builder(); } public static Trademark create() { return builder().build(); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return description */ public String getDescription() { return this.description; } /** * @return documentDate */ public String getDocumentDate() { return this.documentDate; } /** * @return documentName */ public String getDocumentName() { return this.documentName; } /** * @return documentUrl */ public String getDocumentUrl() { return this.documentUrl; } /** * @return grade */ public Integer getGrade() { return this.grade; } /** * @return mobile */ public String getMobile() { return this.mobile; } /** * @return registerNumber */ public String getRegisterNumber() { return this.registerNumber; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return type */ public Integer getType() { return this.type; } /** * @return userName */ public String getUserName() { return this.userName; } public static final class Builder { private String bizId; private String classification; private String description; private String documentDate; private String documentName; private String documentUrl; private Integer grade; private String mobile; private String registerNumber; private Integer status; private Integer type; private String userName; /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * Description. */ public Builder description(String description) { this.description = description; return this; } /** * DocumentDate. */ public Builder documentDate(String documentDate) { this.documentDate = documentDate; return this; } /** * DocumentName. */ public Builder documentName(String documentName) { this.documentName = documentName; return this; } /** * DocumentUrl. */ public Builder documentUrl(String documentUrl) { this.documentUrl = documentUrl; return this; } /** * Grade. */ public Builder grade(Integer grade) { this.grade = grade; return this; } /** * Mobile. */ public Builder mobile(String mobile) { this.mobile = mobile; return this; } /** * RegisterNumber. */ public Builder registerNumber(String registerNumber) { this.registerNumber = registerNumber; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * UserName. */ public Builder userName(String userName) { this.userName = userName; return this; } public Trademark build() { return new Trademark(this); } } } public static class Data extends TeaModel { @NameInMap("Trademark") private java.util.List < Trademark> trademark; private Data(Builder builder) { this.trademark = builder.trademark; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return trademark */ public java.util.List < Trademark> getTrademark() { return this.trademark; } public static final class Builder { private java.util.List < Trademark> trademark; /** * Trademark. */ public Builder trademark(java.util.List < Trademark> trademark) { this.trademark = trademark; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationDetailRequest} extends {@link RequestModel} * * <p>QueryTradeMarkApplicationDetailRequest</p> */ public class QueryTradeMarkApplicationDetailRequest extends Request { @Query @NameInMap("BizId") private String bizId; private QueryTradeMarkApplicationDetailRequest(Builder builder) { super(builder); this.bizId = builder.bizId; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } public static final class Builder extends Request.Builder<QueryTradeMarkApplicationDetailRequest, Builder> { private String bizId; private Builder() { super(); } private Builder(QueryTradeMarkApplicationDetailRequest request) { super(request); this.bizId = request.bizId; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } @Override public QueryTradeMarkApplicationDetailRequest build() { return new QueryTradeMarkApplicationDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationDetailResponse} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationDetailResponse</p> */ public class QueryTradeMarkApplicationDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeMarkApplicationDetailResponseBody body; private QueryTradeMarkApplicationDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeMarkApplicationDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeMarkApplicationDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeMarkApplicationDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeMarkApplicationDetailResponseBody body); @Override QueryTradeMarkApplicationDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeMarkApplicationDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeMarkApplicationDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeMarkApplicationDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeMarkApplicationDetailResponseBody body) { this.body = body; return this; } @Override public QueryTradeMarkApplicationDetailResponse build() { return new QueryTradeMarkApplicationDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationDetailResponseBody} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationDetailResponseBody</p> */ public class QueryTradeMarkApplicationDetailResponseBody extends TeaModel { @NameInMap("AcceptUrl") private String acceptUrl; @NameInMap("AdminUploads") private AdminUploads adminUploads; @NameInMap("BizId") private String bizId; @NameInMap("CreateTime") private Long createTime; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("FirstClassification") private FirstClassification firstClassification; @NameInMap("Flags") private Flags flags; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("JudgeResultUrl") private JudgeResultUrl judgeResultUrl; @NameInMap("LegalNoticeUrl") private String legalNoticeUrl; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("LogisticsCertificateUrl") private String logisticsCertificateUrl; @NameInMap("LogisticsNo") private String logisticsNo; @NameInMap("MaterialDetail") private MaterialDetail materialDetail; @NameInMap("MaterialId") private Long materialId; @NameInMap("NotAcceptUrl") private String notAcceptUrl; @NameInMap("Note") private String note; @NameInMap("OrderId") private String orderId; @NameInMap("OrderPrice") private Float orderPrice; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PartnerMobile") private String partnerMobile; @NameInMap("PartnerName") private String partnerName; @NameInMap("PrincipalName") private Integer principalName; @NameInMap("ReceiptUrl") private ReceiptUrl receiptUrl; @NameInMap("RecvUserLogistics") private String recvUserLogistics; @NameInMap("RenewResponse") private RenewResponse renewResponse; @NameInMap("RequestId") private String requestId; @NameInMap("ReviewOfficialFiles") private ReviewOfficialFiles reviewOfficialFiles; @NameInMap("SendSbjLogistics") private String sendSbjLogistics; @NameInMap("SendTime") private String sendTime; @NameInMap("SendUserLogistics") private String sendUserLogistics; @NameInMap("ServicePrice") private Float servicePrice; @NameInMap("Specification") private Integer specification; @NameInMap("Status") private Integer status; @NameInMap("SubmitAuditTime") private Long submitAuditTime; @NameInMap("SubmitTime") private Long submitTime; @NameInMap("Supplements") private Supplements supplements; @NameInMap("SystemVersion") private String systemVersion; @NameInMap("ThirdClassification") private ThirdClassification thirdClassification; @NameInMap("TmIcon") private String tmIcon; @NameInMap("TmName") private String tmName; @NameInMap("TmNameType") private Integer tmNameType; @NameInMap("TmNumber") private String tmNumber; @NameInMap("TotalPrice") private Float totalPrice; @NameInMap("Type") private Integer type; @NameInMap("UpdateTime") private Long updateTime; private QueryTradeMarkApplicationDetailResponseBody(Builder builder) { this.acceptUrl = builder.acceptUrl; this.adminUploads = builder.adminUploads; this.bizId = builder.bizId; this.createTime = builder.createTime; this.extendInfo = builder.extendInfo; this.firstClassification = builder.firstClassification; this.flags = builder.flags; this.grayIconUrl = builder.grayIconUrl; this.judgeResultUrl = builder.judgeResultUrl; this.legalNoticeUrl = builder.legalNoticeUrl; this.loaUrl = builder.loaUrl; this.logisticsCertificateUrl = builder.logisticsCertificateUrl; this.logisticsNo = builder.logisticsNo; this.materialDetail = builder.materialDetail; this.materialId = builder.materialId; this.notAcceptUrl = builder.notAcceptUrl; this.note = builder.note; this.orderId = builder.orderId; this.orderPrice = builder.orderPrice; this.partnerCode = builder.partnerCode; this.partnerMobile = builder.partnerMobile; this.partnerName = builder.partnerName; this.principalName = builder.principalName; this.receiptUrl = builder.receiptUrl; this.recvUserLogistics = builder.recvUserLogistics; this.renewResponse = builder.renewResponse; this.requestId = builder.requestId; this.reviewOfficialFiles = builder.reviewOfficialFiles; this.sendSbjLogistics = builder.sendSbjLogistics; this.sendTime = builder.sendTime; this.sendUserLogistics = builder.sendUserLogistics; this.servicePrice = builder.servicePrice; this.specification = builder.specification; this.status = builder.status; this.submitAuditTime = builder.submitAuditTime; this.submitTime = builder.submitTime; this.supplements = builder.supplements; this.systemVersion = builder.systemVersion; this.thirdClassification = builder.thirdClassification; this.tmIcon = builder.tmIcon; this.tmName = builder.tmName; this.tmNameType = builder.tmNameType; this.tmNumber = builder.tmNumber; this.totalPrice = builder.totalPrice; this.type = builder.type; this.updateTime = builder.updateTime; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationDetailResponseBody create() { return builder().build(); } /** * @return acceptUrl */ public String getAcceptUrl() { return this.acceptUrl; } /** * @return adminUploads */ public AdminUploads getAdminUploads() { return this.adminUploads; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return firstClassification */ public FirstClassification getFirstClassification() { return this.firstClassification; } /** * @return flags */ public Flags getFlags() { return this.flags; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return judgeResultUrl */ public JudgeResultUrl getJudgeResultUrl() { return this.judgeResultUrl; } /** * @return legalNoticeUrl */ public String getLegalNoticeUrl() { return this.legalNoticeUrl; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return logisticsCertificateUrl */ public String getLogisticsCertificateUrl() { return this.logisticsCertificateUrl; } /** * @return logisticsNo */ public String getLogisticsNo() { return this.logisticsNo; } /** * @return materialDetail */ public MaterialDetail getMaterialDetail() { return this.materialDetail; } /** * @return materialId */ public Long getMaterialId() { return this.materialId; } /** * @return notAcceptUrl */ public String getNotAcceptUrl() { return this.notAcceptUrl; } /** * @return note */ public String getNote() { return this.note; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return orderPrice */ public Float getOrderPrice() { return this.orderPrice; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return partnerMobile */ public String getPartnerMobile() { return this.partnerMobile; } /** * @return partnerName */ public String getPartnerName() { return this.partnerName; } /** * @return principalName */ public Integer getPrincipalName() { return this.principalName; } /** * @return receiptUrl */ public ReceiptUrl getReceiptUrl() { return this.receiptUrl; } /** * @return recvUserLogistics */ public String getRecvUserLogistics() { return this.recvUserLogistics; } /** * @return renewResponse */ public RenewResponse getRenewResponse() { return this.renewResponse; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return reviewOfficialFiles */ public ReviewOfficialFiles getReviewOfficialFiles() { return this.reviewOfficialFiles; } /** * @return sendSbjLogistics */ public String getSendSbjLogistics() { return this.sendSbjLogistics; } /** * @return sendTime */ public String getSendTime() { return this.sendTime; } /** * @return sendUserLogistics */ public String getSendUserLogistics() { return this.sendUserLogistics; } /** * @return servicePrice */ public Float getServicePrice() { return this.servicePrice; } /** * @return specification */ public Integer getSpecification() { return this.specification; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return submitAuditTime */ public Long getSubmitAuditTime() { return this.submitAuditTime; } /** * @return submitTime */ public Long getSubmitTime() { return this.submitTime; } /** * @return supplements */ public Supplements getSupplements() { return this.supplements; } /** * @return systemVersion */ public String getSystemVersion() { return this.systemVersion; } /** * @return thirdClassification */ public ThirdClassification getThirdClassification() { return this.thirdClassification; } /** * @return tmIcon */ public String getTmIcon() { return this.tmIcon; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return tmNameType */ public Integer getTmNameType() { return this.tmNameType; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return totalPrice */ public Float getTotalPrice() { return this.totalPrice; } /** * @return type */ public Integer getType() { return this.type; } /** * @return updateTime */ public Long getUpdateTime() { return this.updateTime; } public static final class Builder { private String acceptUrl; private AdminUploads adminUploads; private String bizId; private Long createTime; private java.util.Map < String, ? > extendInfo; private FirstClassification firstClassification; private Flags flags; private String grayIconUrl; private JudgeResultUrl judgeResultUrl; private String legalNoticeUrl; private String loaUrl; private String logisticsCertificateUrl; private String logisticsNo; private MaterialDetail materialDetail; private Long materialId; private String notAcceptUrl; private String note; private String orderId; private Float orderPrice; private String partnerCode; private String partnerMobile; private String partnerName; private Integer principalName; private ReceiptUrl receiptUrl; private String recvUserLogistics; private RenewResponse renewResponse; private String requestId; private ReviewOfficialFiles reviewOfficialFiles; private String sendSbjLogistics; private String sendTime; private String sendUserLogistics; private Float servicePrice; private Integer specification; private Integer status; private Long submitAuditTime; private Long submitTime; private Supplements supplements; private String systemVersion; private ThirdClassification thirdClassification; private String tmIcon; private String tmName; private Integer tmNameType; private String tmNumber; private Float totalPrice; private Integer type; private Long updateTime; /** * AcceptUrl. */ public Builder acceptUrl(String acceptUrl) { this.acceptUrl = acceptUrl; return this; } /** * AdminUploads. */ public Builder adminUploads(AdminUploads adminUploads) { this.adminUploads = adminUploads; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * CreateTime. */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * FirstClassification. */ public Builder firstClassification(FirstClassification firstClassification) { this.firstClassification = firstClassification; return this; } /** * Flags. */ public Builder flags(Flags flags) { this.flags = flags; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * JudgeResultUrl. */ public Builder judgeResultUrl(JudgeResultUrl judgeResultUrl) { this.judgeResultUrl = judgeResultUrl; return this; } /** * LegalNoticeUrl. */ public Builder legalNoticeUrl(String legalNoticeUrl) { this.legalNoticeUrl = legalNoticeUrl; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * LogisticsCertificateUrl. */ public Builder logisticsCertificateUrl(String logisticsCertificateUrl) { this.logisticsCertificateUrl = logisticsCertificateUrl; return this; } /** * LogisticsNo. */ public Builder logisticsNo(String logisticsNo) { this.logisticsNo = logisticsNo; return this; } /** * MaterialDetail. */ public Builder materialDetail(MaterialDetail materialDetail) { this.materialDetail = materialDetail; return this; } /** * MaterialId. */ public Builder materialId(Long materialId) { this.materialId = materialId; return this; } /** * NotAcceptUrl. */ public Builder notAcceptUrl(String notAcceptUrl) { this.notAcceptUrl = notAcceptUrl; return this; } /** * Note. */ public Builder note(String note) { this.note = note; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * OrderPrice. */ public Builder orderPrice(Float orderPrice) { this.orderPrice = orderPrice; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PartnerMobile. */ public Builder partnerMobile(String partnerMobile) { this.partnerMobile = partnerMobile; return this; } /** * PartnerName. */ public Builder partnerName(String partnerName) { this.partnerName = partnerName; return this; } /** * PrincipalName. */ public Builder principalName(Integer principalName) { this.principalName = principalName; return this; } /** * ReceiptUrl. */ public Builder receiptUrl(ReceiptUrl receiptUrl) { this.receiptUrl = receiptUrl; return this; } /** * RecvUserLogistics. */ public Builder recvUserLogistics(String recvUserLogistics) { this.recvUserLogistics = recvUserLogistics; return this; } /** * RenewResponse. */ public Builder renewResponse(RenewResponse renewResponse) { this.renewResponse = renewResponse; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * ReviewOfficialFiles. */ public Builder reviewOfficialFiles(ReviewOfficialFiles reviewOfficialFiles) { this.reviewOfficialFiles = reviewOfficialFiles; return this; } /** * SendSbjLogistics. */ public Builder sendSbjLogistics(String sendSbjLogistics) { this.sendSbjLogistics = sendSbjLogistics; return this; } /** * SendTime. */ public Builder sendTime(String sendTime) { this.sendTime = sendTime; return this; } /** * SendUserLogistics. */ public Builder sendUserLogistics(String sendUserLogistics) { this.sendUserLogistics = sendUserLogistics; return this; } /** * ServicePrice. */ public Builder servicePrice(Float servicePrice) { this.servicePrice = servicePrice; return this; } /** * Specification. */ public Builder specification(Integer specification) { this.specification = specification; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * SubmitAuditTime. */ public Builder submitAuditTime(Long submitAuditTime) { this.submitAuditTime = submitAuditTime; return this; } /** * SubmitTime. */ public Builder submitTime(Long submitTime) { this.submitTime = submitTime; return this; } /** * Supplements. */ public Builder supplements(Supplements supplements) { this.supplements = supplements; return this; } /** * SystemVersion. */ public Builder systemVersion(String systemVersion) { this.systemVersion = systemVersion; return this; } /** * ThirdClassification. */ public Builder thirdClassification(ThirdClassification thirdClassification) { this.thirdClassification = thirdClassification; return this; } /** * TmIcon. */ public Builder tmIcon(String tmIcon) { this.tmIcon = tmIcon; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * TmNameType. */ public Builder tmNameType(Integer tmNameType) { this.tmNameType = tmNameType; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.tmNumber = tmNumber; return this; } /** * TotalPrice. */ public Builder totalPrice(Float totalPrice) { this.totalPrice = totalPrice; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * UpdateTime. */ public Builder updateTime(Long updateTime) { this.updateTime = updateTime; return this; } public QueryTradeMarkApplicationDetailResponseBody build() { return new QueryTradeMarkApplicationDetailResponseBody(this); } } public static class AdminUploads extends TeaModel { @NameInMap("LicensePicUrl") private String licensePicUrl; @NameInMap("LoaPicUrl") private String loaPicUrl; private AdminUploads(Builder builder) { this.licensePicUrl = builder.licensePicUrl; this.loaPicUrl = builder.loaPicUrl; } public static Builder builder() { return new Builder(); } public static AdminUploads create() { return builder().build(); } /** * @return licensePicUrl */ public String getLicensePicUrl() { return this.licensePicUrl; } /** * @return loaPicUrl */ public String getLoaPicUrl() { return this.loaPicUrl; } public static final class Builder { private String licensePicUrl; private String loaPicUrl; /** * LicensePicUrl. */ public Builder licensePicUrl(String licensePicUrl) { this.licensePicUrl = licensePicUrl; return this; } /** * LoaPicUrl. */ public Builder loaPicUrl(String loaPicUrl) { this.loaPicUrl = loaPicUrl; return this; } public AdminUploads build() { return new AdminUploads(this); } } } public static class FirstClassification extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Name") private String name; private FirstClassification(Builder builder) { this.code = builder.code; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static FirstClassification create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String code; private String name; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public FirstClassification build() { return new FirstClassification(this); } } } public static class Flags extends TeaModel { @NameInMap("Flag") private java.util.List < Integer > flag; private Flags(Builder builder) { this.flag = builder.flag; } public static Builder builder() { return new Builder(); } public static Flags create() { return builder().build(); } /** * @return flag */ public java.util.List < Integer > getFlag() { return this.flag; } public static final class Builder { private java.util.List < Integer > flag; /** * Flag. */ public Builder flag(java.util.List < Integer > flag) { this.flag = flag; return this; } public Flags build() { return new Flags(this); } } } public static class JudgeResultUrl extends TeaModel { @NameInMap("JudgeResultUrl") private java.util.List < String > judgeResultUrl; private JudgeResultUrl(Builder builder) { this.judgeResultUrl = builder.judgeResultUrl; } public static Builder builder() { return new Builder(); } public static JudgeResultUrl create() { return builder().build(); } /** * @return judgeResultUrl */ public java.util.List < String > getJudgeResultUrl() { return this.judgeResultUrl; } public static final class Builder { private java.util.List < String > judgeResultUrl; /** * JudgeResultUrl. */ public Builder judgeResultUrl(java.util.List < String > judgeResultUrl) { this.judgeResultUrl = judgeResultUrl; return this; } public JudgeResultUrl build() { return new JudgeResultUrl(this); } } } public static class ReviewAdditionalFiles extends TeaModel { @NameInMap("ReviewAdditionalFile") private java.util.List < String > reviewAdditionalFile; private ReviewAdditionalFiles(Builder builder) { this.reviewAdditionalFile = builder.reviewAdditionalFile; } public static Builder builder() { return new Builder(); } public static ReviewAdditionalFiles create() { return builder().build(); } /** * @return reviewAdditionalFile */ public java.util.List < String > getReviewAdditionalFile() { return this.reviewAdditionalFile; } public static final class Builder { private java.util.List < String > reviewAdditionalFile; /** * ReviewAdditionalFile. */ public Builder reviewAdditionalFile(java.util.List < String > reviewAdditionalFile) { this.reviewAdditionalFile = reviewAdditionalFile; return this; } public ReviewAdditionalFiles build() { return new ReviewAdditionalFiles(this); } } } public static class MaterialDetail extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("City") private String city; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactCity") private String contactCity; @NameInMap("ContactDistrict") private String contactDistrict; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactName") private String contactName; @NameInMap("ContactNumber") private String contactNumber; @NameInMap("ContactProvince") private String contactProvince; @NameInMap("ContactZipcode") private String contactZipcode; @NameInMap("Country") private String country; @NameInMap("DetailedContactAddress") private String detailedContactAddress; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("ExpirationDate") private String expirationDate; @NameInMap("FactAndReasonPdfPath") private String factAndReasonPdfPath; @NameInMap("IdCardName") private String idCardName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LegalNoticeUrl") private String legalNoticeUrl; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("MaterialVersion") private String materialVersion; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private Long personalType; @NameInMap("PrincipalName") private Integer principalName; @NameInMap("Province") private String province; @NameInMap("Region") private Integer region; @NameInMap("ReviewAdditionalFiles") private ReviewAdditionalFiles reviewAdditionalFiles; @NameInMap("ReviewApplicationFile") private String reviewApplicationFile; @NameInMap("Status") private Integer status; @NameInMap("SupplementEvidenceCatalogFile") private String supplementEvidenceCatalogFile; @NameInMap("SupplementEvidenceMaterialFile") private String supplementEvidenceMaterialFile; @NameInMap("SupplementReasonFile") private String supplementReasonFile; @NameInMap("Town") private String town; @NameInMap("Type") private Integer type; private MaterialDetail(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.city = builder.city; this.contactAddress = builder.contactAddress; this.contactCity = builder.contactCity; this.contactDistrict = builder.contactDistrict; this.contactEmail = builder.contactEmail; this.contactName = builder.contactName; this.contactNumber = builder.contactNumber; this.contactProvince = builder.contactProvince; this.contactZipcode = builder.contactZipcode; this.country = builder.country; this.detailedContactAddress = builder.detailedContactAddress; this.eAddress = builder.eAddress; this.eName = builder.eName; this.expirationDate = builder.expirationDate; this.factAndReasonPdfPath = builder.factAndReasonPdfPath; this.idCardName = builder.idCardName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.legalNoticeUrl = builder.legalNoticeUrl; this.loaUrl = builder.loaUrl; this.materialVersion = builder.materialVersion; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.principalName = builder.principalName; this.province = builder.province; this.region = builder.region; this.reviewAdditionalFiles = builder.reviewAdditionalFiles; this.reviewApplicationFile = builder.reviewApplicationFile; this.status = builder.status; this.supplementEvidenceCatalogFile = builder.supplementEvidenceCatalogFile; this.supplementEvidenceMaterialFile = builder.supplementEvidenceMaterialFile; this.supplementReasonFile = builder.supplementReasonFile; this.town = builder.town; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialDetail create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return city */ public String getCity() { return this.city; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactCity */ public String getContactCity() { return this.contactCity; } /** * @return contactDistrict */ public String getContactDistrict() { return this.contactDistrict; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactName */ public String getContactName() { return this.contactName; } /** * @return contactNumber */ public String getContactNumber() { return this.contactNumber; } /** * @return contactProvince */ public String getContactProvince() { return this.contactProvince; } /** * @return contactZipcode */ public String getContactZipcode() { return this.contactZipcode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return detailedContactAddress */ public String getDetailedContactAddress() { return this.detailedContactAddress; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return expirationDate */ public String getExpirationDate() { return this.expirationDate; } /** * @return factAndReasonPdfPath */ public String getFactAndReasonPdfPath() { return this.factAndReasonPdfPath; } /** * @return idCardName */ public String getIdCardName() { return this.idCardName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return legalNoticeUrl */ public String getLegalNoticeUrl() { return this.legalNoticeUrl; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return materialVersion */ public String getMaterialVersion() { return this.materialVersion; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public Long getPersonalType() { return this.personalType; } /** * @return principalName */ public Integer getPrincipalName() { return this.principalName; } /** * @return province */ public String getProvince() { return this.province; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return reviewAdditionalFiles */ public ReviewAdditionalFiles getReviewAdditionalFiles() { return this.reviewAdditionalFiles; } /** * @return reviewApplicationFile */ public String getReviewApplicationFile() { return this.reviewApplicationFile; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return supplementEvidenceCatalogFile */ public String getSupplementEvidenceCatalogFile() { return this.supplementEvidenceCatalogFile; } /** * @return supplementEvidenceMaterialFile */ public String getSupplementEvidenceMaterialFile() { return this.supplementEvidenceMaterialFile; } /** * @return supplementReasonFile */ public String getSupplementReasonFile() { return this.supplementReasonFile; } /** * @return town */ public String getTown() { return this.town; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String city; private String contactAddress; private String contactCity; private String contactDistrict; private String contactEmail; private String contactName; private String contactNumber; private String contactProvince; private String contactZipcode; private String country; private String detailedContactAddress; private String eAddress; private String eName; private String expirationDate; private String factAndReasonPdfPath; private String idCardName; private String idCardNumber; private String idCardUrl; private String legalNoticeUrl; private String loaUrl; private String materialVersion; private String name; private String passportUrl; private Long personalType; private Integer principalName; private String province; private Integer region; private ReviewAdditionalFiles reviewAdditionalFiles; private String reviewApplicationFile; private Integer status; private String supplementEvidenceCatalogFile; private String supplementEvidenceMaterialFile; private String supplementReasonFile; private String town; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * City. */ public Builder city(String city) { this.city = city; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactCity. */ public Builder contactCity(String contactCity) { this.contactCity = contactCity; return this; } /** * ContactDistrict. */ public Builder contactDistrict(String contactDistrict) { this.contactDistrict = contactDistrict; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactName. */ public Builder contactName(String contactName) { this.contactName = contactName; return this; } /** * ContactNumber. */ public Builder contactNumber(String contactNumber) { this.contactNumber = contactNumber; return this; } /** * ContactProvince. */ public Builder contactProvince(String contactProvince) { this.contactProvince = contactProvince; return this; } /** * ContactZipcode. */ public Builder contactZipcode(String contactZipcode) { this.contactZipcode = contactZipcode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * DetailedContactAddress. */ public Builder detailedContactAddress(String detailedContactAddress) { this.detailedContactAddress = detailedContactAddress; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * ExpirationDate. */ public Builder expirationDate(String expirationDate) { this.expirationDate = expirationDate; return this; } /** * FactAndReasonPdfPath. */ public Builder factAndReasonPdfPath(String factAndReasonPdfPath) { this.factAndReasonPdfPath = factAndReasonPdfPath; return this; } /** * IdCardName. */ public Builder idCardName(String idCardName) { this.idCardName = idCardName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LegalNoticeUrl. */ public Builder legalNoticeUrl(String legalNoticeUrl) { this.legalNoticeUrl = legalNoticeUrl; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * MaterialVersion. */ public Builder materialVersion(String materialVersion) { this.materialVersion = materialVersion; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(Long personalType) { this.personalType = personalType; return this; } /** * PrincipalName. */ public Builder principalName(Integer principalName) { this.principalName = principalName; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * ReviewAdditionalFiles. */ public Builder reviewAdditionalFiles(ReviewAdditionalFiles reviewAdditionalFiles) { this.reviewAdditionalFiles = reviewAdditionalFiles; return this; } /** * ReviewApplicationFile. */ public Builder reviewApplicationFile(String reviewApplicationFile) { this.reviewApplicationFile = reviewApplicationFile; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * SupplementEvidenceCatalogFile. */ public Builder supplementEvidenceCatalogFile(String supplementEvidenceCatalogFile) { this.supplementEvidenceCatalogFile = supplementEvidenceCatalogFile; return this; } /** * SupplementEvidenceMaterialFile. */ public Builder supplementEvidenceMaterialFile(String supplementEvidenceMaterialFile) { this.supplementEvidenceMaterialFile = supplementEvidenceMaterialFile; return this; } /** * SupplementReasonFile. */ public Builder supplementReasonFile(String supplementReasonFile) { this.supplementReasonFile = supplementReasonFile; return this; } /** * Town. */ public Builder town(String town) { this.town = town; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialDetail build() { return new MaterialDetail(this); } } } public static class ReceiptUrl extends TeaModel { @NameInMap("ReceiptUrl") private java.util.List < String > receiptUrl; private ReceiptUrl(Builder builder) { this.receiptUrl = builder.receiptUrl; } public static Builder builder() { return new Builder(); } public static ReceiptUrl create() { return builder().build(); } /** * @return receiptUrl */ public java.util.List < String > getReceiptUrl() { return this.receiptUrl; } public static final class Builder { private java.util.List < String > receiptUrl; /** * ReceiptUrl. */ public Builder receiptUrl(java.util.List < String > receiptUrl) { this.receiptUrl = receiptUrl; return this; } public ReceiptUrl build() { return new ReceiptUrl(this); } } } public static class RenewResponse extends TeaModel { @NameInMap("Address") private String address; @NameInMap("EngAddress") private String engAddress; @NameInMap("EngName") private String engName; @NameInMap("Name") private String name; @NameInMap("RegisterTime") private Long registerTime; @NameInMap("SubmitSbjtime") private Long submitSbjtime; private RenewResponse(Builder builder) { this.address = builder.address; this.engAddress = builder.engAddress; this.engName = builder.engName; this.name = builder.name; this.registerTime = builder.registerTime; this.submitSbjtime = builder.submitSbjtime; } public static Builder builder() { return new Builder(); } public static RenewResponse create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return engAddress */ public String getEngAddress() { return this.engAddress; } /** * @return engName */ public String getEngName() { return this.engName; } /** * @return name */ public String getName() { return this.name; } /** * @return registerTime */ public Long getRegisterTime() { return this.registerTime; } /** * @return submitSbjtime */ public Long getSubmitSbjtime() { return this.submitSbjtime; } public static final class Builder { private String address; private String engAddress; private String engName; private String name; private Long registerTime; private Long submitSbjtime; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * EngAddress. */ public Builder engAddress(String engAddress) { this.engAddress = engAddress; return this; } /** * EngName. */ public Builder engName(String engName) { this.engName = engName; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * RegisterTime. */ public Builder registerTime(Long registerTime) { this.registerTime = registerTime; return this; } /** * SubmitSbjtime. */ public Builder submitSbjtime(Long submitSbjtime) { this.submitSbjtime = submitSbjtime; return this; } public RenewResponse build() { return new RenewResponse(this); } } } public static class ReviewSupplements extends TeaModel { @NameInMap("ReviewSupplement") private java.util.List < String > reviewSupplement; private ReviewSupplements(Builder builder) { this.reviewSupplement = builder.reviewSupplement; } public static Builder builder() { return new Builder(); } public static ReviewSupplements create() { return builder().build(); } /** * @return reviewSupplement */ public java.util.List < String > getReviewSupplement() { return this.reviewSupplement; } public static final class Builder { private java.util.List < String > reviewSupplement; /** * ReviewSupplement. */ public Builder reviewSupplement(java.util.List < String > reviewSupplement) { this.reviewSupplement = reviewSupplement; return this; } public ReviewSupplements build() { return new ReviewSupplements(this); } } } public static class ReviewOfficialFiles extends TeaModel { @NameInMap("ReviewAudit") private String reviewAudit; @NameInMap("ReviewKeep") private String reviewKeep; @NameInMap("ReviewPart") private String reviewPart; @NameInMap("ReviewPass") private String reviewPass; @NameInMap("ReviewSupplements") private ReviewSupplements reviewSupplements; private ReviewOfficialFiles(Builder builder) { this.reviewAudit = builder.reviewAudit; this.reviewKeep = builder.reviewKeep; this.reviewPart = builder.reviewPart; this.reviewPass = builder.reviewPass; this.reviewSupplements = builder.reviewSupplements; } public static Builder builder() { return new Builder(); } public static ReviewOfficialFiles create() { return builder().build(); } /** * @return reviewAudit */ public String getReviewAudit() { return this.reviewAudit; } /** * @return reviewKeep */ public String getReviewKeep() { return this.reviewKeep; } /** * @return reviewPart */ public String getReviewPart() { return this.reviewPart; } /** * @return reviewPass */ public String getReviewPass() { return this.reviewPass; } /** * @return reviewSupplements */ public ReviewSupplements getReviewSupplements() { return this.reviewSupplements; } public static final class Builder { private String reviewAudit; private String reviewKeep; private String reviewPart; private String reviewPass; private ReviewSupplements reviewSupplements; /** * ReviewAudit. */ public Builder reviewAudit(String reviewAudit) { this.reviewAudit = reviewAudit; return this; } /** * ReviewKeep. */ public Builder reviewKeep(String reviewKeep) { this.reviewKeep = reviewKeep; return this; } /** * ReviewPart. */ public Builder reviewPart(String reviewPart) { this.reviewPart = reviewPart; return this; } /** * ReviewPass. */ public Builder reviewPass(String reviewPass) { this.reviewPass = reviewPass; return this; } /** * ReviewSupplements. */ public Builder reviewSupplements(ReviewSupplements reviewSupplements) { this.reviewSupplements = reviewSupplements; return this; } public ReviewOfficialFiles build() { return new ReviewOfficialFiles(this); } } } public static class FileTemplateUrls extends TeaModel { @NameInMap("FileTemplateUrls") private java.util.List < String > fileTemplateUrls; private FileTemplateUrls(Builder builder) { this.fileTemplateUrls = builder.fileTemplateUrls; } public static Builder builder() { return new Builder(); } public static FileTemplateUrls create() { return builder().build(); } /** * @return fileTemplateUrls */ public java.util.List < String > getFileTemplateUrls() { return this.fileTemplateUrls; } public static final class Builder { private java.util.List < String > fileTemplateUrls; /** * FileTemplateUrls. */ public Builder fileTemplateUrls(java.util.List < String > fileTemplateUrls) { this.fileTemplateUrls = fileTemplateUrls; return this; } public FileTemplateUrls build() { return new FileTemplateUrls(this); } } } public static class SupplementsSupplements extends TeaModel { @NameInMap("AcceptDeadTime") private Long acceptDeadTime; @NameInMap("AcceptTime") private Long acceptTime; @NameInMap("BatchNum") private String batchNum; @NameInMap("Content") private String content; @NameInMap("FileTemplateUrls") private FileTemplateUrls fileTemplateUrls; @NameInMap("Filename") private String filename; @NameInMap("Id") private Long id; @NameInMap("OperateTime") private Long operateTime; @NameInMap("OrderId") private String orderId; @NameInMap("SbjDeadTime") private Long sbjDeadTime; @NameInMap("SendTime") private Long sendTime; @NameInMap("SerialNumber") private String serialNumber; @NameInMap("Status") private Integer status; @NameInMap("TmNumber") private String tmNumber; @NameInMap("Type") private Integer type; @NameInMap("UploadFileTemplateUrl") private String uploadFileTemplateUrl; private SupplementsSupplements(Builder builder) { this.acceptDeadTime = builder.acceptDeadTime; this.acceptTime = builder.acceptTime; this.batchNum = builder.batchNum; this.content = builder.content; this.fileTemplateUrls = builder.fileTemplateUrls; this.filename = builder.filename; this.id = builder.id; this.operateTime = builder.operateTime; this.orderId = builder.orderId; this.sbjDeadTime = builder.sbjDeadTime; this.sendTime = builder.sendTime; this.serialNumber = builder.serialNumber; this.status = builder.status; this.tmNumber = builder.tmNumber; this.type = builder.type; this.uploadFileTemplateUrl = builder.uploadFileTemplateUrl; } public static Builder builder() { return new Builder(); } public static SupplementsSupplements create() { return builder().build(); } /** * @return acceptDeadTime */ public Long getAcceptDeadTime() { return this.acceptDeadTime; } /** * @return acceptTime */ public Long getAcceptTime() { return this.acceptTime; } /** * @return batchNum */ public String getBatchNum() { return this.batchNum; } /** * @return content */ public String getContent() { return this.content; } /** * @return fileTemplateUrls */ public FileTemplateUrls getFileTemplateUrls() { return this.fileTemplateUrls; } /** * @return filename */ public String getFilename() { return this.filename; } /** * @return id */ public Long getId() { return this.id; } /** * @return operateTime */ public Long getOperateTime() { return this.operateTime; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return sbjDeadTime */ public Long getSbjDeadTime() { return this.sbjDeadTime; } /** * @return sendTime */ public Long getSendTime() { return this.sendTime; } /** * @return serialNumber */ public String getSerialNumber() { return this.serialNumber; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return type */ public Integer getType() { return this.type; } /** * @return uploadFileTemplateUrl */ public String getUploadFileTemplateUrl() { return this.uploadFileTemplateUrl; } public static final class Builder { private Long acceptDeadTime; private Long acceptTime; private String batchNum; private String content; private FileTemplateUrls fileTemplateUrls; private String filename; private Long id; private Long operateTime; private String orderId; private Long sbjDeadTime; private Long sendTime; private String serialNumber; private Integer status; private String tmNumber; private Integer type; private String uploadFileTemplateUrl; /** * AcceptDeadTime. */ public Builder acceptDeadTime(Long acceptDeadTime) { this.acceptDeadTime = acceptDeadTime; return this; } /** * AcceptTime. */ public Builder acceptTime(Long acceptTime) { this.acceptTime = acceptTime; return this; } /** * BatchNum. */ public Builder batchNum(String batchNum) { this.batchNum = batchNum; return this; } /** * Content. */ public Builder content(String content) { this.content = content; return this; } /** * FileTemplateUrls. */ public Builder fileTemplateUrls(FileTemplateUrls fileTemplateUrls) { this.fileTemplateUrls = fileTemplateUrls; return this; } /** * Filename. */ public Builder filename(String filename) { this.filename = filename; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * OperateTime. */ public Builder operateTime(Long operateTime) { this.operateTime = operateTime; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * SbjDeadTime. */ public Builder sbjDeadTime(Long sbjDeadTime) { this.sbjDeadTime = sbjDeadTime; return this; } /** * SendTime. */ public Builder sendTime(Long sendTime) { this.sendTime = sendTime; return this; } /** * SerialNumber. */ public Builder serialNumber(String serialNumber) { this.serialNumber = serialNumber; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.tmNumber = tmNumber; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * UploadFileTemplateUrl. */ public Builder uploadFileTemplateUrl(String uploadFileTemplateUrl) { this.uploadFileTemplateUrl = uploadFileTemplateUrl; return this; } public SupplementsSupplements build() { return new SupplementsSupplements(this); } } } public static class Supplements extends TeaModel { @NameInMap("Supplements") private java.util.List < SupplementsSupplements> supplements; private Supplements(Builder builder) { this.supplements = builder.supplements; } public static Builder builder() { return new Builder(); } public static Supplements create() { return builder().build(); } /** * @return supplements */ public java.util.List < SupplementsSupplements> getSupplements() { return this.supplements; } public static final class Builder { private java.util.List < SupplementsSupplements> supplements; /** * Supplements. */ public Builder supplements(java.util.List < SupplementsSupplements> supplements) { this.supplements = supplements; return this; } public Supplements build() { return new Supplements(this); } } } public static class ThirdClassifications extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Name") private String name; private ThirdClassifications(Builder builder) { this.code = builder.code; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static ThirdClassifications create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String code; private String name; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public ThirdClassifications build() { return new ThirdClassifications(this); } } } public static class ThirdClassification extends TeaModel { @NameInMap("ThirdClassifications") private java.util.List < ThirdClassifications> thirdClassifications; private ThirdClassification(Builder builder) { this.thirdClassifications = builder.thirdClassifications; } public static Builder builder() { return new Builder(); } public static ThirdClassification create() { return builder().build(); } /** * @return thirdClassifications */ public java.util.List < ThirdClassifications> getThirdClassifications() { return this.thirdClassifications; } public static final class Builder { private java.util.List < ThirdClassifications> thirdClassifications; /** * ThirdClassifications. */ public Builder thirdClassifications(java.util.List < ThirdClassifications> thirdClassifications) { this.thirdClassifications = thirdClassifications; return this; } public ThirdClassification build() { return new ThirdClassification(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationLogsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationLogsRequest} extends {@link RequestModel} * * <p>QueryTradeMarkApplicationLogsRequest</p> */ public class QueryTradeMarkApplicationLogsRequest extends Request { @Query @NameInMap("BizId") @Validation(required = true) private String bizId; private QueryTradeMarkApplicationLogsRequest(Builder builder) { super(builder); this.bizId = builder.bizId; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationLogsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } public static final class Builder extends Request.Builder<QueryTradeMarkApplicationLogsRequest, Builder> { private String bizId; private Builder() { super(); } private Builder(QueryTradeMarkApplicationLogsRequest request) { super(request); this.bizId = request.bizId; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } @Override public QueryTradeMarkApplicationLogsRequest build() { return new QueryTradeMarkApplicationLogsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationLogsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationLogsResponse} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationLogsResponse</p> */ public class QueryTradeMarkApplicationLogsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeMarkApplicationLogsResponseBody body; private QueryTradeMarkApplicationLogsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeMarkApplicationLogsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeMarkApplicationLogsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeMarkApplicationLogsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeMarkApplicationLogsResponseBody body); @Override QueryTradeMarkApplicationLogsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeMarkApplicationLogsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeMarkApplicationLogsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeMarkApplicationLogsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeMarkApplicationLogsResponseBody body) { this.body = body; return this; } @Override public QueryTradeMarkApplicationLogsResponse build() { return new QueryTradeMarkApplicationLogsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationLogsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationLogsResponseBody} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationLogsResponseBody</p> */ public class QueryTradeMarkApplicationLogsResponseBody extends TeaModel { @NameInMap("Data") private Data data; @NameInMap("RequestId") private String requestId; private QueryTradeMarkApplicationLogsResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationLogsResponseBody create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Data data; private String requestId; /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public QueryTradeMarkApplicationLogsResponseBody build() { return new QueryTradeMarkApplicationLogsResponseBody(this); } } public static class DataData extends TeaModel { @NameInMap("BizId") private String bizId; @NameInMap("BizStatus") private Integer bizStatus; @NameInMap("ExtendContent") private String extendContent; @NameInMap("Note") private String note; @NameInMap("OperateTime") private Long operateTime; @NameInMap("OperateType") private Integer operateType; @NameInMap("ToBizStatus") private Integer toBizStatus; private DataData(Builder builder) { this.bizId = builder.bizId; this.bizStatus = builder.bizStatus; this.extendContent = builder.extendContent; this.note = builder.note; this.operateTime = builder.operateTime; this.operateType = builder.operateType; this.toBizStatus = builder.toBizStatus; } public static Builder builder() { return new Builder(); } public static DataData create() { return builder().build(); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizStatus */ public Integer getBizStatus() { return this.bizStatus; } /** * @return extendContent */ public String getExtendContent() { return this.extendContent; } /** * @return note */ public String getNote() { return this.note; } /** * @return operateTime */ public Long getOperateTime() { return this.operateTime; } /** * @return operateType */ public Integer getOperateType() { return this.operateType; } /** * @return toBizStatus */ public Integer getToBizStatus() { return this.toBizStatus; } public static final class Builder { private String bizId; private Integer bizStatus; private String extendContent; private String note; private Long operateTime; private Integer operateType; private Integer toBizStatus; /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizStatus. */ public Builder bizStatus(Integer bizStatus) { this.bizStatus = bizStatus; return this; } /** * ExtendContent. */ public Builder extendContent(String extendContent) { this.extendContent = extendContent; return this; } /** * Note. */ public Builder note(String note) { this.note = note; return this; } /** * OperateTime. */ public Builder operateTime(Long operateTime) { this.operateTime = operateTime; return this; } /** * OperateType. */ public Builder operateType(Integer operateType) { this.operateType = operateType; return this; } /** * ToBizStatus. */ public Builder toBizStatus(Integer toBizStatus) { this.toBizStatus = toBizStatus; return this; } public DataData build() { return new DataData(this); } } } public static class Data extends TeaModel { @NameInMap("Data") private java.util.List < DataData> data; private Data(Builder builder) { this.data = builder.data; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return data */ public java.util.List < DataData> getData() { return this.data; } public static final class Builder { private java.util.List < DataData> data; /** * Data. */ public Builder data(java.util.List < DataData> data) { this.data = data; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationsByIntentionRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationsByIntentionRequest} extends {@link RequestModel} * * <p>QueryTradeMarkApplicationsByIntentionRequest</p> */ public class QueryTradeMarkApplicationsByIntentionRequest extends Request { @Query @NameInMap("Channel") private String channel; @Query @NameInMap("IntentionBizId") @Validation(required = true) private String intentionBizId; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("TmProduceStatus") private String tmProduceStatus; private QueryTradeMarkApplicationsByIntentionRequest(Builder builder) { super(builder); this.channel = builder.channel; this.intentionBizId = builder.intentionBizId; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.tmProduceStatus = builder.tmProduceStatus; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationsByIntentionRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return channel */ public String getChannel() { return this.channel; } /** * @return intentionBizId */ public String getIntentionBizId() { return this.intentionBizId; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return tmProduceStatus */ public String getTmProduceStatus() { return this.tmProduceStatus; } public static final class Builder extends Request.Builder<QueryTradeMarkApplicationsByIntentionRequest, Builder> { private String channel; private String intentionBizId; private Integer pageNum; private Integer pageSize; private String tmProduceStatus; private Builder() { super(); } private Builder(QueryTradeMarkApplicationsByIntentionRequest request) { super(request); this.channel = request.channel; this.intentionBizId = request.intentionBizId; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.tmProduceStatus = request.tmProduceStatus; } /** * Channel. */ public Builder channel(String channel) { this.putQueryParameter("Channel", channel); this.channel = channel; return this; } /** * IntentionBizId. */ public Builder intentionBizId(String intentionBizId) { this.putQueryParameter("IntentionBizId", intentionBizId); this.intentionBizId = intentionBizId; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * TmProduceStatus. */ public Builder tmProduceStatus(String tmProduceStatus) { this.putQueryParameter("TmProduceStatus", tmProduceStatus); this.tmProduceStatus = tmProduceStatus; return this; } @Override public QueryTradeMarkApplicationsByIntentionRequest build() { return new QueryTradeMarkApplicationsByIntentionRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationsByIntentionResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationsByIntentionResponse} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationsByIntentionResponse</p> */ public class QueryTradeMarkApplicationsByIntentionResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeMarkApplicationsByIntentionResponseBody body; private QueryTradeMarkApplicationsByIntentionResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeMarkApplicationsByIntentionResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeMarkApplicationsByIntentionResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeMarkApplicationsByIntentionResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeMarkApplicationsByIntentionResponseBody body); @Override QueryTradeMarkApplicationsByIntentionResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeMarkApplicationsByIntentionResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeMarkApplicationsByIntentionResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeMarkApplicationsByIntentionResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeMarkApplicationsByIntentionResponseBody body) { this.body = body; return this; } @Override public QueryTradeMarkApplicationsByIntentionResponse build() { return new QueryTradeMarkApplicationsByIntentionResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationsByIntentionResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationsByIntentionResponseBody} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationsByIntentionResponseBody</p> */ public class QueryTradeMarkApplicationsByIntentionResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTradeMarkApplicationsByIntentionResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationsByIntentionResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Integer pageSize; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTradeMarkApplicationsByIntentionResponseBody build() { return new QueryTradeMarkApplicationsByIntentionResponseBody(this); } } public static class FirstClassification extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private FirstClassification(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static FirstClassification create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public FirstClassification build() { return new FirstClassification(this); } } } public static class ThirdClassifications extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private ThirdClassifications(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static ThirdClassifications create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public ThirdClassifications build() { return new ThirdClassifications(this); } } } public static class ThirdClassification extends TeaModel { @NameInMap("ThirdClassifications") private java.util.List < ThirdClassifications> thirdClassifications; private ThirdClassification(Builder builder) { this.thirdClassifications = builder.thirdClassifications; } public static Builder builder() { return new Builder(); } public static ThirdClassification create() { return builder().build(); } /** * @return thirdClassifications */ public java.util.List < ThirdClassifications> getThirdClassifications() { return this.thirdClassifications; } public static final class Builder { private java.util.List < ThirdClassifications> thirdClassifications; /** * ThirdClassifications. */ public Builder thirdClassifications(java.util.List < ThirdClassifications> thirdClassifications) { this.thirdClassifications = thirdClassifications; return this; } public ThirdClassification build() { return new ThirdClassification(this); } } } public static class TmProduces extends TeaModel { @NameInMap("BizId") private String bizId; @NameInMap("CreateTime") private Long createTime; @NameInMap("FirstClassification") private FirstClassification firstClassification; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("MaterialId") private String materialId; @NameInMap("MaterialName") private String materialName; @NameInMap("Note") private String note; @NameInMap("OrderPrice") private Float orderPrice; @NameInMap("PrincipalDescription") private String principalDescription; @NameInMap("PrincipalValue") private Integer principalValue; @NameInMap("ServicePrice") private Float servicePrice; @NameInMap("Status") private Integer status; @NameInMap("SupplementId") private Long supplementId; @NameInMap("SupplementStatus") private Integer supplementStatus; @NameInMap("ThirdClassification") private ThirdClassification thirdClassification; @NameInMap("TmIcon") private String tmIcon; @NameInMap("TmName") private String tmName; @NameInMap("TmNumber") private String tmNumber; @NameInMap("TotalPrice") private Float totalPrice; @NameInMap("Type") private Integer type; @NameInMap("UpdateTime") private Long updateTime; private TmProduces(Builder builder) { this.bizId = builder.bizId; this.createTime = builder.createTime; this.firstClassification = builder.firstClassification; this.loaUrl = builder.loaUrl; this.materialId = builder.materialId; this.materialName = builder.materialName; this.note = builder.note; this.orderPrice = builder.orderPrice; this.principalDescription = builder.principalDescription; this.principalValue = builder.principalValue; this.servicePrice = builder.servicePrice; this.status = builder.status; this.supplementId = builder.supplementId; this.supplementStatus = builder.supplementStatus; this.thirdClassification = builder.thirdClassification; this.tmIcon = builder.tmIcon; this.tmName = builder.tmName; this.tmNumber = builder.tmNumber; this.totalPrice = builder.totalPrice; this.type = builder.type; this.updateTime = builder.updateTime; } public static Builder builder() { return new Builder(); } public static TmProduces create() { return builder().build(); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return firstClassification */ public FirstClassification getFirstClassification() { return this.firstClassification; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return materialId */ public String getMaterialId() { return this.materialId; } /** * @return materialName */ public String getMaterialName() { return this.materialName; } /** * @return note */ public String getNote() { return this.note; } /** * @return orderPrice */ public Float getOrderPrice() { return this.orderPrice; } /** * @return principalDescription */ public String getPrincipalDescription() { return this.principalDescription; } /** * @return principalValue */ public Integer getPrincipalValue() { return this.principalValue; } /** * @return servicePrice */ public Float getServicePrice() { return this.servicePrice; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return supplementId */ public Long getSupplementId() { return this.supplementId; } /** * @return supplementStatus */ public Integer getSupplementStatus() { return this.supplementStatus; } /** * @return thirdClassification */ public ThirdClassification getThirdClassification() { return this.thirdClassification; } /** * @return tmIcon */ public String getTmIcon() { return this.tmIcon; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return totalPrice */ public Float getTotalPrice() { return this.totalPrice; } /** * @return type */ public Integer getType() { return this.type; } /** * @return updateTime */ public Long getUpdateTime() { return this.updateTime; } public static final class Builder { private String bizId; private Long createTime; private FirstClassification firstClassification; private String loaUrl; private String materialId; private String materialName; private String note; private Float orderPrice; private String principalDescription; private Integer principalValue; private Float servicePrice; private Integer status; private Long supplementId; private Integer supplementStatus; private ThirdClassification thirdClassification; private String tmIcon; private String tmName; private String tmNumber; private Float totalPrice; private Integer type; private Long updateTime; /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * CreateTime. */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * FirstClassification. */ public Builder firstClassification(FirstClassification firstClassification) { this.firstClassification = firstClassification; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * MaterialId. */ public Builder materialId(String materialId) { this.materialId = materialId; return this; } /** * MaterialName. */ public Builder materialName(String materialName) { this.materialName = materialName; return this; } /** * Note. */ public Builder note(String note) { this.note = note; return this; } /** * OrderPrice. */ public Builder orderPrice(Float orderPrice) { this.orderPrice = orderPrice; return this; } /** * PrincipalDescription. */ public Builder principalDescription(String principalDescription) { this.principalDescription = principalDescription; return this; } /** * PrincipalValue. */ public Builder principalValue(Integer principalValue) { this.principalValue = principalValue; return this; } /** * ServicePrice. */ public Builder servicePrice(Float servicePrice) { this.servicePrice = servicePrice; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * SupplementId. */ public Builder supplementId(Long supplementId) { this.supplementId = supplementId; return this; } /** * SupplementStatus. */ public Builder supplementStatus(Integer supplementStatus) { this.supplementStatus = supplementStatus; return this; } /** * ThirdClassification. */ public Builder thirdClassification(ThirdClassification thirdClassification) { this.thirdClassification = thirdClassification; return this; } /** * TmIcon. */ public Builder tmIcon(String tmIcon) { this.tmIcon = tmIcon; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.tmNumber = tmNumber; return this; } /** * TotalPrice. */ public Builder totalPrice(Float totalPrice) { this.totalPrice = totalPrice; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * UpdateTime. */ public Builder updateTime(Long updateTime) { this.updateTime = updateTime; return this; } public TmProduces build() { return new TmProduces(this); } } } public static class Data extends TeaModel { @NameInMap("TmProduces") private java.util.List < TmProduces> tmProduces; private Data(Builder builder) { this.tmProduces = builder.tmProduces; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return tmProduces */ public java.util.List < TmProduces> getTmProduces() { return this.tmProduces; } public static final class Builder { private java.util.List < TmProduces> tmProduces; /** * TmProduces. */ public Builder tmProduces(java.util.List < TmProduces> tmProduces) { this.tmProduces = tmProduces; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationsRequest} extends {@link RequestModel} * * <p>QueryTradeMarkApplicationsRequest</p> */ public class QueryTradeMarkApplicationsRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("ClassificationCode") @Validation(maxLength = 2) private String classificationCode; @Query @NameInMap("Hidden") private Integer hidden; @Query @NameInMap("IntentionBizId") private String intentionBizId; @Query @NameInMap("LogisticsNo") @Validation(maxLength = 50) private String logisticsNo; @Query @NameInMap("MaterialName") private String materialName; @Query @NameInMap("OrderId") private String orderId; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("ProductType") @Validation(maximum = 100, minimum = 1) private Integer productType; @Query @NameInMap("SortFiled") private String sortFiled; @Query @NameInMap("SortOrder") private String sortOrder; @Query @NameInMap("Specification") private Integer specification; @Query @NameInMap("Status") private Integer status; @Query @NameInMap("SupplementStatus") private Integer supplementStatus; @Query @NameInMap("TmName") private String tmName; @Query @NameInMap("TmNumber") private String tmNumber; @Query @NameInMap("Type") private String type; private QueryTradeMarkApplicationsRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.classificationCode = builder.classificationCode; this.hidden = builder.hidden; this.intentionBizId = builder.intentionBizId; this.logisticsNo = builder.logisticsNo; this.materialName = builder.materialName; this.orderId = builder.orderId; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.productType = builder.productType; this.sortFiled = builder.sortFiled; this.sortOrder = builder.sortOrder; this.specification = builder.specification; this.status = builder.status; this.supplementStatus = builder.supplementStatus; this.tmName = builder.tmName; this.tmNumber = builder.tmNumber; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return hidden */ public Integer getHidden() { return this.hidden; } /** * @return intentionBizId */ public String getIntentionBizId() { return this.intentionBizId; } /** * @return logisticsNo */ public String getLogisticsNo() { return this.logisticsNo; } /** * @return materialName */ public String getMaterialName() { return this.materialName; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return productType */ public Integer getProductType() { return this.productType; } /** * @return sortFiled */ public String getSortFiled() { return this.sortFiled; } /** * @return sortOrder */ public String getSortOrder() { return this.sortOrder; } /** * @return specification */ public Integer getSpecification() { return this.specification; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return supplementStatus */ public Integer getSupplementStatus() { return this.supplementStatus; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<QueryTradeMarkApplicationsRequest, Builder> { private String bizId; private String classificationCode; private Integer hidden; private String intentionBizId; private String logisticsNo; private String materialName; private String orderId; private Integer pageNum; private Integer pageSize; private Integer productType; private String sortFiled; private String sortOrder; private Integer specification; private Integer status; private Integer supplementStatus; private String tmName; private String tmNumber; private String type; private Builder() { super(); } private Builder(QueryTradeMarkApplicationsRequest request) { super(request); this.bizId = request.bizId; this.classificationCode = request.classificationCode; this.hidden = request.hidden; this.intentionBizId = request.intentionBizId; this.logisticsNo = request.logisticsNo; this.materialName = request.materialName; this.orderId = request.orderId; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.productType = request.productType; this.sortFiled = request.sortFiled; this.sortOrder = request.sortOrder; this.specification = request.specification; this.status = request.status; this.supplementStatus = request.supplementStatus; this.tmName = request.tmName; this.tmNumber = request.tmNumber; this.type = request.type; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.putQueryParameter("ClassificationCode", classificationCode); this.classificationCode = classificationCode; return this; } /** * Hidden. */ public Builder hidden(Integer hidden) { this.putQueryParameter("Hidden", hidden); this.hidden = hidden; return this; } /** * IntentionBizId. */ public Builder intentionBizId(String intentionBizId) { this.putQueryParameter("IntentionBizId", intentionBizId); this.intentionBizId = intentionBizId; return this; } /** * LogisticsNo. */ public Builder logisticsNo(String logisticsNo) { this.putQueryParameter("LogisticsNo", logisticsNo); this.logisticsNo = logisticsNo; return this; } /** * MaterialName. */ public Builder materialName(String materialName) { this.putQueryParameter("MaterialName", materialName); this.materialName = materialName; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.putQueryParameter("OrderId", orderId); this.orderId = orderId; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * ProductType. */ public Builder productType(Integer productType) { this.putQueryParameter("ProductType", productType); this.productType = productType; return this; } /** * SortFiled. */ public Builder sortFiled(String sortFiled) { this.putQueryParameter("SortFiled", sortFiled); this.sortFiled = sortFiled; return this; } /** * SortOrder. */ public Builder sortOrder(String sortOrder) { this.putQueryParameter("SortOrder", sortOrder); this.sortOrder = sortOrder; return this; } /** * Specification. */ public Builder specification(Integer specification) { this.putQueryParameter("Specification", specification); this.specification = specification; return this; } /** * Status. */ public Builder status(Integer status) { this.putQueryParameter("Status", status); this.status = status; return this; } /** * SupplementStatus. */ public Builder supplementStatus(Integer supplementStatus) { this.putQueryParameter("SupplementStatus", supplementStatus); this.supplementStatus = supplementStatus; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.putQueryParameter("TmName", tmName); this.tmName = tmName; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.putQueryParameter("TmNumber", tmNumber); this.tmNumber = tmNumber; return this; } /** * Type. */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } @Override public QueryTradeMarkApplicationsRequest build() { return new QueryTradeMarkApplicationsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationsResponse} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationsResponse</p> */ public class QueryTradeMarkApplicationsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeMarkApplicationsResponseBody body; private QueryTradeMarkApplicationsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeMarkApplicationsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeMarkApplicationsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeMarkApplicationsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeMarkApplicationsResponseBody body); @Override QueryTradeMarkApplicationsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeMarkApplicationsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeMarkApplicationsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeMarkApplicationsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeMarkApplicationsResponseBody body) { this.body = body; return this; } @Override public QueryTradeMarkApplicationsResponse build() { return new QueryTradeMarkApplicationsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeMarkApplicationsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeMarkApplicationsResponseBody} extends {@link TeaModel} * * <p>QueryTradeMarkApplicationsResponseBody</p> */ public class QueryTradeMarkApplicationsResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTradeMarkApplicationsResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTradeMarkApplicationsResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Integer pageSize; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTradeMarkApplicationsResponseBody build() { return new QueryTradeMarkApplicationsResponseBody(this); } } public static class FirstClassification extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private FirstClassification(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static FirstClassification create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public FirstClassification build() { return new FirstClassification(this); } } } public static class Flags extends TeaModel { @NameInMap("Flags") private java.util.List < String > flags; private Flags(Builder builder) { this.flags = builder.flags; } public static Builder builder() { return new Builder(); } public static Flags create() { return builder().build(); } /** * @return flags */ public java.util.List < String > getFlags() { return this.flags; } public static final class Builder { private java.util.List < String > flags; /** * Flags. */ public Builder flags(java.util.List < String > flags) { this.flags = flags; return this; } public Flags build() { return new Flags(this); } } } public static class RenewResponse extends TeaModel { @NameInMap("Address") private String address; @NameInMap("EngAddress") private String engAddress; @NameInMap("EngName") private String engName; @NameInMap("Name") private String name; @NameInMap("RegisterTime") private Long registerTime; @NameInMap("SubmitSbjtime") private Long submitSbjtime; private RenewResponse(Builder builder) { this.address = builder.address; this.engAddress = builder.engAddress; this.engName = builder.engName; this.name = builder.name; this.registerTime = builder.registerTime; this.submitSbjtime = builder.submitSbjtime; } public static Builder builder() { return new Builder(); } public static RenewResponse create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return engAddress */ public String getEngAddress() { return this.engAddress; } /** * @return engName */ public String getEngName() { return this.engName; } /** * @return name */ public String getName() { return this.name; } /** * @return registerTime */ public Long getRegisterTime() { return this.registerTime; } /** * @return submitSbjtime */ public Long getSubmitSbjtime() { return this.submitSbjtime; } public static final class Builder { private String address; private String engAddress; private String engName; private String name; private Long registerTime; private Long submitSbjtime; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * EngAddress. */ public Builder engAddress(String engAddress) { this.engAddress = engAddress; return this; } /** * EngName. */ public Builder engName(String engName) { this.engName = engName; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * RegisterTime. */ public Builder registerTime(Long registerTime) { this.registerTime = registerTime; return this; } /** * SubmitSbjtime. */ public Builder submitSbjtime(Long submitSbjtime) { this.submitSbjtime = submitSbjtime; return this; } public RenewResponse build() { return new RenewResponse(this); } } } public static class ThirdClassifications extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private ThirdClassifications(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static ThirdClassifications create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public ThirdClassifications build() { return new ThirdClassifications(this); } } } public static class ThirdClassification extends TeaModel { @NameInMap("ThirdClassifications") private java.util.List < ThirdClassifications> thirdClassifications; private ThirdClassification(Builder builder) { this.thirdClassifications = builder.thirdClassifications; } public static Builder builder() { return new Builder(); } public static ThirdClassification create() { return builder().build(); } /** * @return thirdClassifications */ public java.util.List < ThirdClassifications> getThirdClassifications() { return this.thirdClassifications; } public static final class Builder { private java.util.List < ThirdClassifications> thirdClassifications; /** * ThirdClassifications. */ public Builder thirdClassifications(java.util.List < ThirdClassifications> thirdClassifications) { this.thirdClassifications = thirdClassifications; return this; } public ThirdClassification build() { return new ThirdClassification(this); } } } public static class TmProduces extends TeaModel { @NameInMap("AgreementId") private String agreementId; @NameInMap("BizId") private String bizId; @NameInMap("CreateTime") private Long createTime; @NameInMap("FirstClassification") private FirstClassification firstClassification; @NameInMap("Flags") private Flags flags; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("MaterialId") private Long materialId; @NameInMap("MaterialName") private String materialName; @NameInMap("Note") private String note; @NameInMap("OrderId") private String orderId; @NameInMap("OrderPrice") private Float orderPrice; @NameInMap("PrincipalName") private Integer principalName; @NameInMap("Remark") private String remark; @NameInMap("RenewResponse") private RenewResponse renewResponse; @NameInMap("ServicePrice") private Float servicePrice; @NameInMap("ShowGoToDefendButton") private Boolean showGoToDefendButton; @NameInMap("Specification") @Validation(required = true) private Integer specification; @NameInMap("Status") private Integer status; @NameInMap("SubmitAuditTime") private Long submitAuditTime; @NameInMap("SubmitTime") private Long submitTime; @NameInMap("SupplementId") private Long supplementId; @NameInMap("SupplementStatus") private Integer supplementStatus; @NameInMap("SystemVersion") private String systemVersion; @NameInMap("ThirdClassification") private ThirdClassification thirdClassification; @NameInMap("TmIcon") private String tmIcon; @NameInMap("TmName") private String tmName; @NameInMap("TmNumber") private String tmNumber; @NameInMap("TotalPrice") private Float totalPrice; @NameInMap("Type") private Integer type; @NameInMap("UpdateTime") private Long updateTime; @NameInMap("UserId") private String userId; private TmProduces(Builder builder) { this.agreementId = builder.agreementId; this.bizId = builder.bizId; this.createTime = builder.createTime; this.firstClassification = builder.firstClassification; this.flags = builder.flags; this.loaUrl = builder.loaUrl; this.materialId = builder.materialId; this.materialName = builder.materialName; this.note = builder.note; this.orderId = builder.orderId; this.orderPrice = builder.orderPrice; this.principalName = builder.principalName; this.remark = builder.remark; this.renewResponse = builder.renewResponse; this.servicePrice = builder.servicePrice; this.showGoToDefendButton = builder.showGoToDefendButton; this.specification = builder.specification; this.status = builder.status; this.submitAuditTime = builder.submitAuditTime; this.submitTime = builder.submitTime; this.supplementId = builder.supplementId; this.supplementStatus = builder.supplementStatus; this.systemVersion = builder.systemVersion; this.thirdClassification = builder.thirdClassification; this.tmIcon = builder.tmIcon; this.tmName = builder.tmName; this.tmNumber = builder.tmNumber; this.totalPrice = builder.totalPrice; this.type = builder.type; this.updateTime = builder.updateTime; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static TmProduces create() { return builder().build(); } /** * @return agreementId */ public String getAgreementId() { return this.agreementId; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return firstClassification */ public FirstClassification getFirstClassification() { return this.firstClassification; } /** * @return flags */ public Flags getFlags() { return this.flags; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return materialId */ public Long getMaterialId() { return this.materialId; } /** * @return materialName */ public String getMaterialName() { return this.materialName; } /** * @return note */ public String getNote() { return this.note; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return orderPrice */ public Float getOrderPrice() { return this.orderPrice; } /** * @return principalName */ public Integer getPrincipalName() { return this.principalName; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return renewResponse */ public RenewResponse getRenewResponse() { return this.renewResponse; } /** * @return servicePrice */ public Float getServicePrice() { return this.servicePrice; } /** * @return showGoToDefendButton */ public Boolean getShowGoToDefendButton() { return this.showGoToDefendButton; } /** * @return specification */ public Integer getSpecification() { return this.specification; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return submitAuditTime */ public Long getSubmitAuditTime() { return this.submitAuditTime; } /** * @return submitTime */ public Long getSubmitTime() { return this.submitTime; } /** * @return supplementId */ public Long getSupplementId() { return this.supplementId; } /** * @return supplementStatus */ public Integer getSupplementStatus() { return this.supplementStatus; } /** * @return systemVersion */ public String getSystemVersion() { return this.systemVersion; } /** * @return thirdClassification */ public ThirdClassification getThirdClassification() { return this.thirdClassification; } /** * @return tmIcon */ public String getTmIcon() { return this.tmIcon; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return tmNumber */ public String getTmNumber() { return this.tmNumber; } /** * @return totalPrice */ public Float getTotalPrice() { return this.totalPrice; } /** * @return type */ public Integer getType() { return this.type; } /** * @return updateTime */ public Long getUpdateTime() { return this.updateTime; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private String agreementId; private String bizId; private Long createTime; private FirstClassification firstClassification; private Flags flags; private String loaUrl; private Long materialId; private String materialName; private String note; private String orderId; private Float orderPrice; private Integer principalName; private String remark; private RenewResponse renewResponse; private Float servicePrice; private Boolean showGoToDefendButton; private Integer specification; private Integer status; private Long submitAuditTime; private Long submitTime; private Long supplementId; private Integer supplementStatus; private String systemVersion; private ThirdClassification thirdClassification; private String tmIcon; private String tmName; private String tmNumber; private Float totalPrice; private Integer type; private Long updateTime; private String userId; /** * AgreementId. */ public Builder agreementId(String agreementId) { this.agreementId = agreementId; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * CreateTime. */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * FirstClassification. */ public Builder firstClassification(FirstClassification firstClassification) { this.firstClassification = firstClassification; return this; } /** * Flags. */ public Builder flags(Flags flags) { this.flags = flags; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * MaterialId. */ public Builder materialId(Long materialId) { this.materialId = materialId; return this; } /** * MaterialName. */ public Builder materialName(String materialName) { this.materialName = materialName; return this; } /** * Note. */ public Builder note(String note) { this.note = note; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * OrderPrice. */ public Builder orderPrice(Float orderPrice) { this.orderPrice = orderPrice; return this; } /** * PrincipalName. */ public Builder principalName(Integer principalName) { this.principalName = principalName; return this; } /** * Remark. */ public Builder remark(String remark) { this.remark = remark; return this; } /** * RenewResponse. */ public Builder renewResponse(RenewResponse renewResponse) { this.renewResponse = renewResponse; return this; } /** * ServicePrice. */ public Builder servicePrice(Float servicePrice) { this.servicePrice = servicePrice; return this; } /** * ShowGoToDefendButton. */ public Builder showGoToDefendButton(Boolean showGoToDefendButton) { this.showGoToDefendButton = showGoToDefendButton; return this; } /** * Specification. */ public Builder specification(Integer specification) { this.specification = specification; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * SubmitAuditTime. */ public Builder submitAuditTime(Long submitAuditTime) { this.submitAuditTime = submitAuditTime; return this; } /** * SubmitTime. */ public Builder submitTime(Long submitTime) { this.submitTime = submitTime; return this; } /** * SupplementId. */ public Builder supplementId(Long supplementId) { this.supplementId = supplementId; return this; } /** * SupplementStatus. */ public Builder supplementStatus(Integer supplementStatus) { this.supplementStatus = supplementStatus; return this; } /** * SystemVersion. */ public Builder systemVersion(String systemVersion) { this.systemVersion = systemVersion; return this; } /** * ThirdClassification. */ public Builder thirdClassification(ThirdClassification thirdClassification) { this.thirdClassification = thirdClassification; return this; } /** * TmIcon. */ public Builder tmIcon(String tmIcon) { this.tmIcon = tmIcon; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * TmNumber. */ public Builder tmNumber(String tmNumber) { this.tmNumber = tmNumber; return this; } /** * TotalPrice. */ public Builder totalPrice(Float totalPrice) { this.totalPrice = totalPrice; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } /** * UpdateTime. */ public Builder updateTime(Long updateTime) { this.updateTime = updateTime; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public TmProduces build() { return new TmProduces(this); } } } public static class Data extends TeaModel { @NameInMap("TmProduces") private java.util.List < TmProduces> tmProduces; private Data(Builder builder) { this.tmProduces = builder.tmProduces; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return tmProduces */ public java.util.List < TmProduces> getTmProduces() { return this.tmProduces; } public static final class Builder { private java.util.List < TmProduces> tmProduces; /** * TmProduces. */ public Builder tmProduces(java.util.List < TmProduces> tmProduces) { this.tmProduces = tmProduces; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeProduceDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeProduceDetailRequest} extends {@link RequestModel} * * <p>QueryTradeProduceDetailRequest</p> */ public class QueryTradeProduceDetailRequest extends Request { @Query @NameInMap("BizId") private String bizId; private QueryTradeProduceDetailRequest(Builder builder) { super(builder); this.bizId = builder.bizId; } public static Builder builder() { return new Builder(); } public static QueryTradeProduceDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } public static final class Builder extends Request.Builder<QueryTradeProduceDetailRequest, Builder> { private String bizId; private Builder() { super(); } private Builder(QueryTradeProduceDetailRequest request) { super(request); this.bizId = request.bizId; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } @Override public QueryTradeProduceDetailRequest build() { return new QueryTradeProduceDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeProduceDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeProduceDetailResponse} extends {@link TeaModel} * * <p>QueryTradeProduceDetailResponse</p> */ public class QueryTradeProduceDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeProduceDetailResponseBody body; private QueryTradeProduceDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeProduceDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeProduceDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeProduceDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeProduceDetailResponseBody body); @Override QueryTradeProduceDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeProduceDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeProduceDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeProduceDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeProduceDetailResponseBody body) { this.body = body; return this; } @Override public QueryTradeProduceDetailResponse build() { return new QueryTradeProduceDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeProduceDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeProduceDetailResponseBody} extends {@link TeaModel} * * <p>QueryTradeProduceDetailResponseBody</p> */ public class QueryTradeProduceDetailResponseBody extends TeaModel { @NameInMap("Data") private Data data; @NameInMap("RequestId") private String requestId; private QueryTradeProduceDetailResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static QueryTradeProduceDetailResponseBody create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Data data; private String requestId; /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public QueryTradeProduceDetailResponseBody build() { return new QueryTradeProduceDetailResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("AllowCancel") private Boolean allowCancel; @NameInMap("BizId") private String bizId; @NameInMap("BuyerStatus") private Integer buyerStatus; @NameInMap("Classification") private String classification; @NameInMap("ConfiscateAmount") private Float confiscateAmount; @NameInMap("CreateTime") private Long createTime; @NameInMap("ExclusiveDateLimit") private String exclusiveDateLimit; @NameInMap("Extend") private java.util.Map < String, ? > extend; @NameInMap("FinalAmount") private Float finalAmount; @NameInMap("Icon") private String icon; @NameInMap("OperateNote") private String operateNote; @NameInMap("PaidAmount") private Float paidAmount; @NameInMap("PreAmount") private Float preAmount; @NameInMap("PreOrderId") private String preOrderId; @NameInMap("RefundAmount") private Float refundAmount; @NameInMap("RegisterNumber") private String registerNumber; @NameInMap("Share") private String share; @NameInMap("Source") private Integer source; @NameInMap("ThirdCode") private String thirdCode; @NameInMap("TmName") private String tmName; @NameInMap("UpdateTime") private Long updateTime; @NameInMap("UserId") private String userId; private Data(Builder builder) { this.allowCancel = builder.allowCancel; this.bizId = builder.bizId; this.buyerStatus = builder.buyerStatus; this.classification = builder.classification; this.confiscateAmount = builder.confiscateAmount; this.createTime = builder.createTime; this.exclusiveDateLimit = builder.exclusiveDateLimit; this.extend = builder.extend; this.finalAmount = builder.finalAmount; this.icon = builder.icon; this.operateNote = builder.operateNote; this.paidAmount = builder.paidAmount; this.preAmount = builder.preAmount; this.preOrderId = builder.preOrderId; this.refundAmount = builder.refundAmount; this.registerNumber = builder.registerNumber; this.share = builder.share; this.source = builder.source; this.thirdCode = builder.thirdCode; this.tmName = builder.tmName; this.updateTime = builder.updateTime; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return allowCancel */ public Boolean getAllowCancel() { return this.allowCancel; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return buyerStatus */ public Integer getBuyerStatus() { return this.buyerStatus; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return confiscateAmount */ public Float getConfiscateAmount() { return this.confiscateAmount; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return exclusiveDateLimit */ public String getExclusiveDateLimit() { return this.exclusiveDateLimit; } /** * @return extend */ public java.util.Map < String, ? > getExtend() { return this.extend; } /** * @return finalAmount */ public Float getFinalAmount() { return this.finalAmount; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return operateNote */ public String getOperateNote() { return this.operateNote; } /** * @return paidAmount */ public Float getPaidAmount() { return this.paidAmount; } /** * @return preAmount */ public Float getPreAmount() { return this.preAmount; } /** * @return preOrderId */ public String getPreOrderId() { return this.preOrderId; } /** * @return refundAmount */ public Float getRefundAmount() { return this.refundAmount; } /** * @return registerNumber */ public String getRegisterNumber() { return this.registerNumber; } /** * @return share */ public String getShare() { return this.share; } /** * @return source */ public Integer getSource() { return this.source; } /** * @return thirdCode */ public String getThirdCode() { return this.thirdCode; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return updateTime */ public Long getUpdateTime() { return this.updateTime; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Boolean allowCancel; private String bizId; private Integer buyerStatus; private String classification; private Float confiscateAmount; private Long createTime; private String exclusiveDateLimit; private java.util.Map < String, ? > extend; private Float finalAmount; private String icon; private String operateNote; private Float paidAmount; private Float preAmount; private String preOrderId; private Float refundAmount; private String registerNumber; private String share; private Integer source; private String thirdCode; private String tmName; private Long updateTime; private String userId; /** * AllowCancel. */ public Builder allowCancel(Boolean allowCancel) { this.allowCancel = allowCancel; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BuyerStatus. */ public Builder buyerStatus(Integer buyerStatus) { this.buyerStatus = buyerStatus; return this; } /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * ConfiscateAmount. */ public Builder confiscateAmount(Float confiscateAmount) { this.confiscateAmount = confiscateAmount; return this; } /** * CreateTime. */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * ExclusiveDateLimit. */ public Builder exclusiveDateLimit(String exclusiveDateLimit) { this.exclusiveDateLimit = exclusiveDateLimit; return this; } /** * Extend. */ public Builder extend(java.util.Map < String, ? > extend) { this.extend = extend; return this; } /** * FinalAmount. */ public Builder finalAmount(Float finalAmount) { this.finalAmount = finalAmount; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * OperateNote. */ public Builder operateNote(String operateNote) { this.operateNote = operateNote; return this; } /** * PaidAmount. */ public Builder paidAmount(Float paidAmount) { this.paidAmount = paidAmount; return this; } /** * PreAmount. */ public Builder preAmount(Float preAmount) { this.preAmount = preAmount; return this; } /** * PreOrderId. */ public Builder preOrderId(String preOrderId) { this.preOrderId = preOrderId; return this; } /** * RefundAmount. */ public Builder refundAmount(Float refundAmount) { this.refundAmount = refundAmount; return this; } /** * RegisterNumber. */ public Builder registerNumber(String registerNumber) { this.registerNumber = registerNumber; return this; } /** * Share. */ public Builder share(String share) { this.share = share; return this; } /** * Source. */ public Builder source(Integer source) { this.source = source; return this; } /** * ThirdCode. */ public Builder thirdCode(String thirdCode) { this.thirdCode = thirdCode; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * UpdateTime. */ public Builder updateTime(Long updateTime) { this.updateTime = updateTime; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeProduceListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeProduceListRequest} extends {@link RequestModel} * * <p>QueryTradeProduceListRequest</p> */ public class QueryTradeProduceListRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("BuyerStatus") private Integer buyerStatus; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("PreOrderId") private String preOrderId; @Query @NameInMap("RegisterNumber") private String registerNumber; @Query @NameInMap("SortFiled") private String sortFiled; @Query @NameInMap("SortOrder") private String sortOrder; private QueryTradeProduceListRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.buyerStatus = builder.buyerStatus; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.preOrderId = builder.preOrderId; this.registerNumber = builder.registerNumber; this.sortFiled = builder.sortFiled; this.sortOrder = builder.sortOrder; } public static Builder builder() { return new Builder(); } public static QueryTradeProduceListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return buyerStatus */ public Integer getBuyerStatus() { return this.buyerStatus; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return preOrderId */ public String getPreOrderId() { return this.preOrderId; } /** * @return registerNumber */ public String getRegisterNumber() { return this.registerNumber; } /** * @return sortFiled */ public String getSortFiled() { return this.sortFiled; } /** * @return sortOrder */ public String getSortOrder() { return this.sortOrder; } public static final class Builder extends Request.Builder<QueryTradeProduceListRequest, Builder> { private String bizId; private Integer buyerStatus; private Integer pageNum; private Integer pageSize; private String preOrderId; private String registerNumber; private String sortFiled; private String sortOrder; private Builder() { super(); } private Builder(QueryTradeProduceListRequest request) { super(request); this.bizId = request.bizId; this.buyerStatus = request.buyerStatus; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.preOrderId = request.preOrderId; this.registerNumber = request.registerNumber; this.sortFiled = request.sortFiled; this.sortOrder = request.sortOrder; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * BuyerStatus. */ public Builder buyerStatus(Integer buyerStatus) { this.putQueryParameter("BuyerStatus", buyerStatus); this.buyerStatus = buyerStatus; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * PreOrderId. */ public Builder preOrderId(String preOrderId) { this.putQueryParameter("PreOrderId", preOrderId); this.preOrderId = preOrderId; return this; } /** * RegisterNumber. */ public Builder registerNumber(String registerNumber) { this.putQueryParameter("RegisterNumber", registerNumber); this.registerNumber = registerNumber; return this; } /** * SortFiled. */ public Builder sortFiled(String sortFiled) { this.putQueryParameter("SortFiled", sortFiled); this.sortFiled = sortFiled; return this; } /** * SortOrder. */ public Builder sortOrder(String sortOrder) { this.putQueryParameter("SortOrder", sortOrder); this.sortOrder = sortOrder; return this; } @Override public QueryTradeProduceListRequest build() { return new QueryTradeProduceListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeProduceListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeProduceListResponse} extends {@link TeaModel} * * <p>QueryTradeProduceListResponse</p> */ public class QueryTradeProduceListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTradeProduceListResponseBody body; private QueryTradeProduceListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTradeProduceListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTradeProduceListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTradeProduceListResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTradeProduceListResponseBody body); @Override QueryTradeProduceListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTradeProduceListResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTradeProduceListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTradeProduceListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTradeProduceListResponseBody body) { this.body = body; return this; } @Override public QueryTradeProduceListResponse build() { return new QueryTradeProduceListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTradeProduceListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTradeProduceListResponseBody} extends {@link TeaModel} * * <p>QueryTradeProduceListResponseBody</p> */ public class QueryTradeProduceListResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTradeProduceListResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTradeProduceListResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Integer pageSize; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTradeProduceListResponseBody build() { return new QueryTradeProduceListResponseBody(this); } } public static class TradeProduces extends TeaModel { @NameInMap("AllowCancel") private Boolean allowCancel; @NameInMap("BizId") private String bizId; @NameInMap("BuyerStatus") private Integer buyerStatus; @NameInMap("Classification") private String classification; @NameInMap("CreateTime") private Long createTime; @NameInMap("FailReason") private Integer failReason; @NameInMap("FinalAmount") private Float finalAmount; @NameInMap("Icon") private String icon; @NameInMap("OperateNote") private String operateNote; @NameInMap("PreAmount") private Float preAmount; @NameInMap("PreOrderId") private String preOrderId; @NameInMap("RegisterNumber") private String registerNumber; @NameInMap("Source") private Integer source; @NameInMap("UpdateTime") private Long updateTime; @NameInMap("UserId") private String userId; private TradeProduces(Builder builder) { this.allowCancel = builder.allowCancel; this.bizId = builder.bizId; this.buyerStatus = builder.buyerStatus; this.classification = builder.classification; this.createTime = builder.createTime; this.failReason = builder.failReason; this.finalAmount = builder.finalAmount; this.icon = builder.icon; this.operateNote = builder.operateNote; this.preAmount = builder.preAmount; this.preOrderId = builder.preOrderId; this.registerNumber = builder.registerNumber; this.source = builder.source; this.updateTime = builder.updateTime; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static TradeProduces create() { return builder().build(); } /** * @return allowCancel */ public Boolean getAllowCancel() { return this.allowCancel; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return buyerStatus */ public Integer getBuyerStatus() { return this.buyerStatus; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return failReason */ public Integer getFailReason() { return this.failReason; } /** * @return finalAmount */ public Float getFinalAmount() { return this.finalAmount; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return operateNote */ public String getOperateNote() { return this.operateNote; } /** * @return preAmount */ public Float getPreAmount() { return this.preAmount; } /** * @return preOrderId */ public String getPreOrderId() { return this.preOrderId; } /** * @return registerNumber */ public String getRegisterNumber() { return this.registerNumber; } /** * @return source */ public Integer getSource() { return this.source; } /** * @return updateTime */ public Long getUpdateTime() { return this.updateTime; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Boolean allowCancel; private String bizId; private Integer buyerStatus; private String classification; private Long createTime; private Integer failReason; private Float finalAmount; private String icon; private String operateNote; private Float preAmount; private String preOrderId; private String registerNumber; private Integer source; private Long updateTime; private String userId; /** * AllowCancel. */ public Builder allowCancel(Boolean allowCancel) { this.allowCancel = allowCancel; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BuyerStatus. */ public Builder buyerStatus(Integer buyerStatus) { this.buyerStatus = buyerStatus; return this; } /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * CreateTime. */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * FailReason. */ public Builder failReason(Integer failReason) { this.failReason = failReason; return this; } /** * FinalAmount. */ public Builder finalAmount(Float finalAmount) { this.finalAmount = finalAmount; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * OperateNote. */ public Builder operateNote(String operateNote) { this.operateNote = operateNote; return this; } /** * PreAmount. */ public Builder preAmount(Float preAmount) { this.preAmount = preAmount; return this; } /** * PreOrderId. */ public Builder preOrderId(String preOrderId) { this.preOrderId = preOrderId; return this; } /** * RegisterNumber. */ public Builder registerNumber(String registerNumber) { this.registerNumber = registerNumber; return this; } /** * Source. */ public Builder source(Integer source) { this.source = source; return this; } /** * UpdateTime. */ public Builder updateTime(Long updateTime) { this.updateTime = updateTime; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public TradeProduces build() { return new TradeProduces(this); } } } public static class Data extends TeaModel { @NameInMap("TradeProduces") private java.util.List < TradeProduces> tradeProduces; private Data(Builder builder) { this.tradeProduces = builder.tradeProduces; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return tradeProduces */ public java.util.List < TradeProduces> getTradeProduces() { return this.tradeProduces; } public static final class Builder { private java.util.List < TradeProduces> tradeProduces; /** * TradeProduces. */ public Builder tradeProduces(java.util.List < TradeProduces> tradeProduces) { this.tradeProduces = tradeProduces; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkDetailByApplyNumberEspRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkDetailByApplyNumberEspRequest} extends {@link RequestModel} * * <p>QueryTrademarkDetailByApplyNumberEspRequest</p> */ public class QueryTrademarkDetailByApplyNumberEspRequest extends Request { @Query @NameInMap("ApplyNumber") private String applyNumber; @Query @NameInMap("BizType") private String bizType; private QueryTrademarkDetailByApplyNumberEspRequest(Builder builder) { super(builder); this.applyNumber = builder.applyNumber; this.bizType = builder.bizType; } public static Builder builder() { return new Builder(); } public static QueryTrademarkDetailByApplyNumberEspRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return applyNumber */ public String getApplyNumber() { return this.applyNumber; } /** * @return bizType */ public String getBizType() { return this.bizType; } public static final class Builder extends Request.Builder<QueryTrademarkDetailByApplyNumberEspRequest, Builder> { private String applyNumber; private String bizType; private Builder() { super(); } private Builder(QueryTrademarkDetailByApplyNumberEspRequest request) { super(request); this.applyNumber = request.applyNumber; this.bizType = request.bizType; } /** * ApplyNumber. */ public Builder applyNumber(String applyNumber) { this.putQueryParameter("ApplyNumber", applyNumber); this.applyNumber = applyNumber; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.putQueryParameter("BizType", bizType); this.bizType = bizType; return this; } @Override public QueryTrademarkDetailByApplyNumberEspRequest build() { return new QueryTrademarkDetailByApplyNumberEspRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkDetailByApplyNumberEspResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkDetailByApplyNumberEspResponse} extends {@link TeaModel} * * <p>QueryTrademarkDetailByApplyNumberEspResponse</p> */ public class QueryTrademarkDetailByApplyNumberEspResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkDetailByApplyNumberEspResponseBody body; private QueryTrademarkDetailByApplyNumberEspResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkDetailByApplyNumberEspResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkDetailByApplyNumberEspResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkDetailByApplyNumberEspResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkDetailByApplyNumberEspResponseBody body); @Override QueryTrademarkDetailByApplyNumberEspResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkDetailByApplyNumberEspResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkDetailByApplyNumberEspResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkDetailByApplyNumberEspResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkDetailByApplyNumberEspResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkDetailByApplyNumberEspResponse build() { return new QueryTrademarkDetailByApplyNumberEspResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkDetailByApplyNumberEspResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkDetailByApplyNumberEspResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkDetailByApplyNumberEspResponseBody</p> */ public class QueryTrademarkDetailByApplyNumberEspResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; @NameInMap("RequestId") private String requestId; private QueryTrademarkDetailByApplyNumberEspResponseBody(Builder builder) { this.moudle = builder.moudle; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static QueryTrademarkDetailByApplyNumberEspResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Moudle moudle; private String requestId; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public QueryTrademarkDetailByApplyNumberEspResponseBody build() { return new QueryTrademarkDetailByApplyNumberEspResponseBody(this); } } public static class LeafCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private LeafCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static LeafCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public LeafCode build() { return new LeafCode(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("leafCode") private java.util.List < LeafCode> leafCode; private LeafCodes(Builder builder) { this.leafCode = builder.leafCode; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCode */ public java.util.List < LeafCode> getLeafCode() { return this.leafCode; } public static final class Builder { private java.util.List < LeafCode> leafCode; /** * leafCode. */ public Builder leafCode(java.util.List < LeafCode> leafCode) { this.leafCode = leafCode; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactName") private String contactName; @NameInMap("ContactPhoneNumber") private String contactPhoneNumber; @NameInMap("ContactZipCode") private String contactZipCode; @NameInMap("Country") private String country; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaKey") private String loaKey; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private Integer personalType; @NameInMap("PostCode") private String postCode; @NameInMap("Province") private String province; @NameInMap("ReasonFileOssKey") private String reasonFileOssKey; @NameInMap("Region") private Integer region; @NameInMap("ReviewFileMap") private java.util.Map < String, ? > reviewFileMap; @NameInMap("Type") private Integer type; private MaterialInfo(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.cnInfoUrl = builder.cnInfoUrl; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactName = builder.contactName; this.contactPhoneNumber = builder.contactPhoneNumber; this.contactZipCode = builder.contactZipCode; this.country = builder.country; this.eAddress = builder.eAddress; this.eName = builder.eName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaKey = builder.loaKey; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.postCode = builder.postCode; this.province = builder.province; this.reasonFileOssKey = builder.reasonFileOssKey; this.region = builder.region; this.reviewFileMap = builder.reviewFileMap; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactName */ public String getContactName() { return this.contactName; } /** * @return contactPhoneNumber */ public String getContactPhoneNumber() { return this.contactPhoneNumber; } /** * @return contactZipCode */ public String getContactZipCode() { return this.contactZipCode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaKey */ public String getLoaKey() { return this.loaKey; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public Integer getPersonalType() { return this.personalType; } /** * @return postCode */ public String getPostCode() { return this.postCode; } /** * @return province */ public String getProvince() { return this.province; } /** * @return reasonFileOssKey */ public String getReasonFileOssKey() { return this.reasonFileOssKey; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return reviewFileMap */ public java.util.Map < String, ? > getReviewFileMap() { return this.reviewFileMap; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String cnInfoUrl; private String contactAddress; private String contactEmail; private String contactName; private String contactPhoneNumber; private String contactZipCode; private String country; private String eAddress; private String eName; private String idCardNumber; private String idCardUrl; private String loaKey; private String loaUrl; private String name; private String passportUrl; private Integer personalType; private String postCode; private String province; private String reasonFileOssKey; private Integer region; private java.util.Map < String, ? > reviewFileMap; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactName. */ public Builder contactName(String contactName) { this.contactName = contactName; return this; } /** * ContactPhoneNumber. */ public Builder contactPhoneNumber(String contactPhoneNumber) { this.contactPhoneNumber = contactPhoneNumber; return this; } /** * ContactZipCode. */ public Builder contactZipCode(String contactZipCode) { this.contactZipCode = contactZipCode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaKey. */ public Builder loaKey(String loaKey) { this.loaKey = loaKey; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(Integer personalType) { this.personalType = personalType; return this; } /** * PostCode. */ public Builder postCode(String postCode) { this.postCode = postCode; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * ReasonFileOssKey. */ public Builder reasonFileOssKey(String reasonFileOssKey) { this.reasonFileOssKey = reasonFileOssKey; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * ReviewFileMap. */ public Builder reviewFileMap(java.util.Map < String, ? > reviewFileMap) { this.reviewFileMap = reviewFileMap; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class RootCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private RootCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public RootCode build() { return new RootCode(this); } } } public static class Moudle extends TeaModel { @NameInMap("BitFlag") private Integer bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("BizType") private String bizType; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("Icon") private String icon; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("OrderId") private String orderId; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProduceType") private String produceType; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private String status; @NameInMap("StatusStr") private String statusStr; @NameInMap("SubmitAuditTimeStr") private String submitAuditTimeStr; @NameInMap("SubmitAuditTimeValue") private Long submitAuditTimeValue; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTimeStr") private String submitTimeStr; @NameInMap("SubmitTimeValue") private Long submitTimeValue; @NameInMap("SubmitTimes") private Integer submitTimes; @NameInMap("TrademarkName") private String trademarkName; @NameInMap("TrademarkNameType") private Integer trademarkNameType; @NameInMap("TrademarkNumber") private String trademarkNumber; private Moudle(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.bizType = builder.bizType; this.extendInfo = builder.extendInfo; this.grayIconUrl = builder.grayIconUrl; this.icon = builder.icon; this.leafCodes = builder.leafCodes; this.materialInfo = builder.materialInfo; this.orderId = builder.orderId; this.partnerCode = builder.partnerCode; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceType = builder.produceType; this.rootCode = builder.rootCode; this.status = builder.status; this.statusStr = builder.statusStr; this.submitAuditTimeStr = builder.submitAuditTimeStr; this.submitAuditTimeValue = builder.submitAuditTimeValue; this.submitStatus = builder.submitStatus; this.submitTimeStr = builder.submitTimeStr; this.submitTimeValue = builder.submitTimeValue; this.submitTimes = builder.submitTimes; this.trademarkName = builder.trademarkName; this.trademarkNameType = builder.trademarkNameType; this.trademarkNumber = builder.trademarkNumber; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return bitFlag */ public Integer getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceType */ public String getProduceType() { return this.produceType; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusStr */ public String getStatusStr() { return this.statusStr; } /** * @return submitAuditTimeStr */ public String getSubmitAuditTimeStr() { return this.submitAuditTimeStr; } /** * @return submitAuditTimeValue */ public Long getSubmitAuditTimeValue() { return this.submitAuditTimeValue; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTimeStr */ public String getSubmitTimeStr() { return this.submitTimeStr; } /** * @return submitTimeValue */ public Long getSubmitTimeValue() { return this.submitTimeValue; } /** * @return submitTimes */ public Integer getSubmitTimes() { return this.submitTimes; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } /** * @return trademarkNameType */ public Integer getTrademarkNameType() { return this.trademarkNameType; } /** * @return trademarkNumber */ public String getTrademarkNumber() { return this.trademarkNumber; } public static final class Builder { private Integer bitFlag; private String bizId; private String bizType; private java.util.Map < String, ? > extendInfo; private String grayIconUrl; private String icon; private LeafCodes leafCodes; private MaterialInfo materialInfo; private String orderId; private String partnerCode; private String principalKey; private String principalName; private String produceType; private RootCode rootCode; private String status; private String statusStr; private String submitAuditTimeStr; private Long submitAuditTimeValue; private String submitStatus; private String submitTimeStr; private Long submitTimeValue; private Integer submitTimes; private String trademarkName; private Integer trademarkNameType; private String trademarkNumber; /** * BitFlag. */ public Builder bitFlag(Integer bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProduceType. */ public Builder produceType(String produceType) { this.produceType = produceType; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusStr. */ public Builder statusStr(String statusStr) { this.statusStr = statusStr; return this; } /** * SubmitAuditTimeStr. */ public Builder submitAuditTimeStr(String submitAuditTimeStr) { this.submitAuditTimeStr = submitAuditTimeStr; return this; } /** * SubmitAuditTimeValue. */ public Builder submitAuditTimeValue(Long submitAuditTimeValue) { this.submitAuditTimeValue = submitAuditTimeValue; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTimeStr. */ public Builder submitTimeStr(String submitTimeStr) { this.submitTimeStr = submitTimeStr; return this; } /** * SubmitTimeValue. */ public Builder submitTimeValue(Long submitTimeValue) { this.submitTimeValue = submitTimeValue; return this; } /** * SubmitTimes. */ public Builder submitTimes(Integer submitTimes) { this.submitTimes = submitTimes; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } /** * TrademarkNameType. */ public Builder trademarkNameType(Integer trademarkNameType) { this.trademarkNameType = trademarkNameType; return this; } /** * TrademarkNumber. */ public Builder trademarkNumber(String trademarkNumber) { this.trademarkNumber = trademarkNumber; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkDetailByApplyNumberRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkDetailByApplyNumberRequest} extends {@link RequestModel} * * <p>QueryTrademarkDetailByApplyNumberRequest</p> */ public class QueryTrademarkDetailByApplyNumberRequest extends Request { @Query @NameInMap("ApplyNumber") private String applyNumber; @Query @NameInMap("Env") private String env; private QueryTrademarkDetailByApplyNumberRequest(Builder builder) { super(builder); this.applyNumber = builder.applyNumber; this.env = builder.env; } public static Builder builder() { return new Builder(); } public static QueryTrademarkDetailByApplyNumberRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return applyNumber */ public String getApplyNumber() { return this.applyNumber; } /** * @return env */ public String getEnv() { return this.env; } public static final class Builder extends Request.Builder<QueryTrademarkDetailByApplyNumberRequest, Builder> { private String applyNumber; private String env; private Builder() { super(); } private Builder(QueryTrademarkDetailByApplyNumberRequest request) { super(request); this.applyNumber = request.applyNumber; this.env = request.env; } /** * ApplyNumber. */ public Builder applyNumber(String applyNumber) { this.putQueryParameter("ApplyNumber", applyNumber); this.applyNumber = applyNumber; return this; } /** * Env. */ public Builder env(String env) { this.putQueryParameter("Env", env); this.env = env; return this; } @Override public QueryTrademarkDetailByApplyNumberRequest build() { return new QueryTrademarkDetailByApplyNumberRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkDetailByApplyNumberResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkDetailByApplyNumberResponse} extends {@link TeaModel} * * <p>QueryTrademarkDetailByApplyNumberResponse</p> */ public class QueryTrademarkDetailByApplyNumberResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkDetailByApplyNumberResponseBody body; private QueryTrademarkDetailByApplyNumberResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkDetailByApplyNumberResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkDetailByApplyNumberResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkDetailByApplyNumberResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkDetailByApplyNumberResponseBody body); @Override QueryTrademarkDetailByApplyNumberResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkDetailByApplyNumberResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkDetailByApplyNumberResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkDetailByApplyNumberResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkDetailByApplyNumberResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkDetailByApplyNumberResponse build() { return new QueryTrademarkDetailByApplyNumberResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkDetailByApplyNumberResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkDetailByApplyNumberResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkDetailByApplyNumberResponseBody</p> */ public class QueryTrademarkDetailByApplyNumberResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; @NameInMap("RequestId") private String requestId; private QueryTrademarkDetailByApplyNumberResponseBody(Builder builder) { this.moudle = builder.moudle; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static QueryTrademarkDetailByApplyNumberResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Moudle moudle; private String requestId; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public QueryTrademarkDetailByApplyNumberResponseBody build() { return new QueryTrademarkDetailByApplyNumberResponseBody(this); } } public static class LeafCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private LeafCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static LeafCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public LeafCode build() { return new LeafCode(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("leafCode") private java.util.List < LeafCode> leafCode; private LeafCodes(Builder builder) { this.leafCode = builder.leafCode; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCode */ public java.util.List < LeafCode> getLeafCode() { return this.leafCode; } public static final class Builder { private java.util.List < LeafCode> leafCode; /** * leafCode. */ public Builder leafCode(java.util.List < LeafCode> leafCode) { this.leafCode = leafCode; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactName") private String contactName; @NameInMap("ContactPhoneNumber") private String contactPhoneNumber; @NameInMap("ContactZipCode") private String contactZipCode; @NameInMap("Country") private String country; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaKey") private String loaKey; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private Integer personalType; @NameInMap("PostCode") private String postCode; @NameInMap("Province") private String province; @NameInMap("ReasonFileOssKey") private String reasonFileOssKey; @NameInMap("Region") private Integer region; @NameInMap("ReviewFileMap") private java.util.Map < String, ? > reviewFileMap; @NameInMap("Type") private Integer type; private MaterialInfo(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.cnInfoUrl = builder.cnInfoUrl; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactName = builder.contactName; this.contactPhoneNumber = builder.contactPhoneNumber; this.contactZipCode = builder.contactZipCode; this.country = builder.country; this.eAddress = builder.eAddress; this.eName = builder.eName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaKey = builder.loaKey; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.postCode = builder.postCode; this.province = builder.province; this.reasonFileOssKey = builder.reasonFileOssKey; this.region = builder.region; this.reviewFileMap = builder.reviewFileMap; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactName */ public String getContactName() { return this.contactName; } /** * @return contactPhoneNumber */ public String getContactPhoneNumber() { return this.contactPhoneNumber; } /** * @return contactZipCode */ public String getContactZipCode() { return this.contactZipCode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaKey */ public String getLoaKey() { return this.loaKey; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public Integer getPersonalType() { return this.personalType; } /** * @return postCode */ public String getPostCode() { return this.postCode; } /** * @return province */ public String getProvince() { return this.province; } /** * @return reasonFileOssKey */ public String getReasonFileOssKey() { return this.reasonFileOssKey; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return reviewFileMap */ public java.util.Map < String, ? > getReviewFileMap() { return this.reviewFileMap; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String cnInfoUrl; private String contactAddress; private String contactEmail; private String contactName; private String contactPhoneNumber; private String contactZipCode; private String country; private String eAddress; private String eName; private String idCardNumber; private String idCardUrl; private String loaKey; private String loaUrl; private String name; private String passportUrl; private Integer personalType; private String postCode; private String province; private String reasonFileOssKey; private Integer region; private java.util.Map < String, ? > reviewFileMap; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactName. */ public Builder contactName(String contactName) { this.contactName = contactName; return this; } /** * ContactPhoneNumber. */ public Builder contactPhoneNumber(String contactPhoneNumber) { this.contactPhoneNumber = contactPhoneNumber; return this; } /** * ContactZipCode. */ public Builder contactZipCode(String contactZipCode) { this.contactZipCode = contactZipCode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaKey. */ public Builder loaKey(String loaKey) { this.loaKey = loaKey; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(Integer personalType) { this.personalType = personalType; return this; } /** * PostCode. */ public Builder postCode(String postCode) { this.postCode = postCode; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * ReasonFileOssKey. */ public Builder reasonFileOssKey(String reasonFileOssKey) { this.reasonFileOssKey = reasonFileOssKey; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * ReviewFileMap. */ public Builder reviewFileMap(java.util.Map < String, ? > reviewFileMap) { this.reviewFileMap = reviewFileMap; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class RootCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private RootCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public RootCode build() { return new RootCode(this); } } } public static class Moudle extends TeaModel { @NameInMap("BitFlag") private Integer bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("BizType") private String bizType; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("Icon") private String icon; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("OrderId") private String orderId; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProduceType") private String produceType; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private String status; @NameInMap("StatusStr") private String statusStr; @NameInMap("SubmitAuditTimeStr") private String submitAuditTimeStr; @NameInMap("SubmitAuditTimeValue") private Long submitAuditTimeValue; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTimeStr") private String submitTimeStr; @NameInMap("SubmitTimeValue") private Long submitTimeValue; @NameInMap("SubmitTimes") private Integer submitTimes; @NameInMap("TrademarkName") private String trademarkName; @NameInMap("TrademarkNameType") private Integer trademarkNameType; @NameInMap("TrademarkNumber") private String trademarkNumber; private Moudle(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.bizType = builder.bizType; this.extendInfo = builder.extendInfo; this.grayIconUrl = builder.grayIconUrl; this.icon = builder.icon; this.leafCodes = builder.leafCodes; this.materialInfo = builder.materialInfo; this.orderId = builder.orderId; this.partnerCode = builder.partnerCode; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceType = builder.produceType; this.rootCode = builder.rootCode; this.status = builder.status; this.statusStr = builder.statusStr; this.submitAuditTimeStr = builder.submitAuditTimeStr; this.submitAuditTimeValue = builder.submitAuditTimeValue; this.submitStatus = builder.submitStatus; this.submitTimeStr = builder.submitTimeStr; this.submitTimeValue = builder.submitTimeValue; this.submitTimes = builder.submitTimes; this.trademarkName = builder.trademarkName; this.trademarkNameType = builder.trademarkNameType; this.trademarkNumber = builder.trademarkNumber; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return bitFlag */ public Integer getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceType */ public String getProduceType() { return this.produceType; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusStr */ public String getStatusStr() { return this.statusStr; } /** * @return submitAuditTimeStr */ public String getSubmitAuditTimeStr() { return this.submitAuditTimeStr; } /** * @return submitAuditTimeValue */ public Long getSubmitAuditTimeValue() { return this.submitAuditTimeValue; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTimeStr */ public String getSubmitTimeStr() { return this.submitTimeStr; } /** * @return submitTimeValue */ public Long getSubmitTimeValue() { return this.submitTimeValue; } /** * @return submitTimes */ public Integer getSubmitTimes() { return this.submitTimes; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } /** * @return trademarkNameType */ public Integer getTrademarkNameType() { return this.trademarkNameType; } /** * @return trademarkNumber */ public String getTrademarkNumber() { return this.trademarkNumber; } public static final class Builder { private Integer bitFlag; private String bizId; private String bizType; private java.util.Map < String, ? > extendInfo; private String grayIconUrl; private String icon; private LeafCodes leafCodes; private MaterialInfo materialInfo; private String orderId; private String partnerCode; private String principalKey; private String principalName; private String produceType; private RootCode rootCode; private String status; private String statusStr; private String submitAuditTimeStr; private Long submitAuditTimeValue; private String submitStatus; private String submitTimeStr; private Long submitTimeValue; private Integer submitTimes; private String trademarkName; private Integer trademarkNameType; private String trademarkNumber; /** * BitFlag. */ public Builder bitFlag(Integer bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProduceType. */ public Builder produceType(String produceType) { this.produceType = produceType; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusStr. */ public Builder statusStr(String statusStr) { this.statusStr = statusStr; return this; } /** * SubmitAuditTimeStr. */ public Builder submitAuditTimeStr(String submitAuditTimeStr) { this.submitAuditTimeStr = submitAuditTimeStr; return this; } /** * SubmitAuditTimeValue. */ public Builder submitAuditTimeValue(Long submitAuditTimeValue) { this.submitAuditTimeValue = submitAuditTimeValue; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTimeStr. */ public Builder submitTimeStr(String submitTimeStr) { this.submitTimeStr = submitTimeStr; return this; } /** * SubmitTimeValue. */ public Builder submitTimeValue(Long submitTimeValue) { this.submitTimeValue = submitTimeValue; return this; } /** * SubmitTimes. */ public Builder submitTimes(Integer submitTimes) { this.submitTimes = submitTimes; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } /** * TrademarkNameType. */ public Builder trademarkNameType(Integer trademarkNameType) { this.trademarkNameType = trademarkNameType; return this; } /** * TrademarkNumber. */ public Builder trademarkNumber(String trademarkNumber) { this.trademarkNumber = trademarkNumber; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelDetailRequest} extends {@link RequestModel} * * <p>QueryTrademarkModelDetailRequest</p> */ public class QueryTrademarkModelDetailRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("Env") private String env; @Query @NameInMap("OrderId") private String orderId; @Query @NameInMap("ReviewSupplementMaterial") private Boolean reviewSupplementMaterial; private QueryTrademarkModelDetailRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.env = builder.env; this.orderId = builder.orderId; this.reviewSupplementMaterial = builder.reviewSupplementMaterial; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return env */ public String getEnv() { return this.env; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return reviewSupplementMaterial */ public Boolean getReviewSupplementMaterial() { return this.reviewSupplementMaterial; } public static final class Builder extends Request.Builder<QueryTrademarkModelDetailRequest, Builder> { private String bizId; private String env; private String orderId; private Boolean reviewSupplementMaterial; private Builder() { super(); } private Builder(QueryTrademarkModelDetailRequest request) { super(request); this.bizId = request.bizId; this.env = request.env; this.orderId = request.orderId; this.reviewSupplementMaterial = request.reviewSupplementMaterial; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * Env. */ public Builder env(String env) { this.putQueryParameter("Env", env); this.env = env; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.putQueryParameter("OrderId", orderId); this.orderId = orderId; return this; } /** * ReviewSupplementMaterial. */ public Builder reviewSupplementMaterial(Boolean reviewSupplementMaterial) { this.putQueryParameter("ReviewSupplementMaterial", reviewSupplementMaterial); this.reviewSupplementMaterial = reviewSupplementMaterial; return this; } @Override public QueryTrademarkModelDetailRequest build() { return new QueryTrademarkModelDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelDetailResponse} extends {@link TeaModel} * * <p>QueryTrademarkModelDetailResponse</p> */ public class QueryTrademarkModelDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkModelDetailResponseBody body; private QueryTrademarkModelDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkModelDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkModelDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkModelDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkModelDetailResponseBody body); @Override QueryTrademarkModelDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkModelDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkModelDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkModelDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkModelDetailResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkModelDetailResponse build() { return new QueryTrademarkModelDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelDetailResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkModelDetailResponseBody</p> */ public class QueryTrademarkModelDetailResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; private QueryTrademarkModelDetailResponseBody(Builder builder) { this.moudle = builder.moudle; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelDetailResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } public static final class Builder { private Moudle moudle; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } public QueryTrademarkModelDetailResponseBody build() { return new QueryTrademarkModelDetailResponseBody(this); } } public static class LeafCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private LeafCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static LeafCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public LeafCode build() { return new LeafCode(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("leafCode") private java.util.List < LeafCode> leafCode; private LeafCodes(Builder builder) { this.leafCode = builder.leafCode; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCode */ public java.util.List < LeafCode> getLeafCode() { return this.leafCode; } public static final class Builder { private java.util.List < LeafCode> leafCode; /** * leafCode. */ public Builder leafCode(java.util.List < LeafCode> leafCode) { this.leafCode = leafCode; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactName") private String contactName; @NameInMap("ContactPhoneNumber") private String contactPhoneNumber; @NameInMap("ContactZipCode") private String contactZipCode; @NameInMap("Country") private String country; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaKey") private String loaKey; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private Integer personalType; @NameInMap("PostCode") private String postCode; @NameInMap("Province") private String province; @NameInMap("ReasonFileOssKey") private String reasonFileOssKey; @NameInMap("Region") private Integer region; @NameInMap("ReviewFileMap") private java.util.Map < String, ? > reviewFileMap; @NameInMap("Type") private Integer type; private MaterialInfo(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.cnInfoUrl = builder.cnInfoUrl; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactName = builder.contactName; this.contactPhoneNumber = builder.contactPhoneNumber; this.contactZipCode = builder.contactZipCode; this.country = builder.country; this.eAddress = builder.eAddress; this.eName = builder.eName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaKey = builder.loaKey; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.postCode = builder.postCode; this.province = builder.province; this.reasonFileOssKey = builder.reasonFileOssKey; this.region = builder.region; this.reviewFileMap = builder.reviewFileMap; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactName */ public String getContactName() { return this.contactName; } /** * @return contactPhoneNumber */ public String getContactPhoneNumber() { return this.contactPhoneNumber; } /** * @return contactZipCode */ public String getContactZipCode() { return this.contactZipCode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaKey */ public String getLoaKey() { return this.loaKey; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public Integer getPersonalType() { return this.personalType; } /** * @return postCode */ public String getPostCode() { return this.postCode; } /** * @return province */ public String getProvince() { return this.province; } /** * @return reasonFileOssKey */ public String getReasonFileOssKey() { return this.reasonFileOssKey; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return reviewFileMap */ public java.util.Map < String, ? > getReviewFileMap() { return this.reviewFileMap; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String cnInfoUrl; private String contactAddress; private String contactEmail; private String contactName; private String contactPhoneNumber; private String contactZipCode; private String country; private String eAddress; private String eName; private String idCardNumber; private String idCardUrl; private String loaKey; private String loaUrl; private String name; private String passportUrl; private Integer personalType; private String postCode; private String province; private String reasonFileOssKey; private Integer region; private java.util.Map < String, ? > reviewFileMap; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactName. */ public Builder contactName(String contactName) { this.contactName = contactName; return this; } /** * ContactPhoneNumber. */ public Builder contactPhoneNumber(String contactPhoneNumber) { this.contactPhoneNumber = contactPhoneNumber; return this; } /** * ContactZipCode. */ public Builder contactZipCode(String contactZipCode) { this.contactZipCode = contactZipCode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaKey. */ public Builder loaKey(String loaKey) { this.loaKey = loaKey; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(Integer personalType) { this.personalType = personalType; return this; } /** * PostCode. */ public Builder postCode(String postCode) { this.postCode = postCode; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * ReasonFileOssKey. */ public Builder reasonFileOssKey(String reasonFileOssKey) { this.reasonFileOssKey = reasonFileOssKey; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * ReviewFileMap. */ public Builder reviewFileMap(java.util.Map < String, ? > reviewFileMap) { this.reviewFileMap = reviewFileMap; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class RootCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private RootCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public RootCode build() { return new RootCode(this); } } } public static class Moudle extends TeaModel { @NameInMap("BitFlag") private Integer bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("BizType") private String bizType; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("Icon") private String icon; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("OrderId") private String orderId; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProduceType") private String produceType; @NameInMap("RequestId") private String requestId; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private String status; @NameInMap("StatusStr") private String statusStr; @NameInMap("SubmitAuditTimeStr") private String submitAuditTimeStr; @NameInMap("SubmitAuditTimeValue") private Long submitAuditTimeValue; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTimeStr") private String submitTimeStr; @NameInMap("SubmitTimeValue") private Long submitTimeValue; @NameInMap("SubmitTimes") private Integer submitTimes; @NameInMap("TrademarkName") private String trademarkName; @NameInMap("TrademarkNameType") private Integer trademarkNameType; @NameInMap("TrademarkNumber") private String trademarkNumber; private Moudle(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.bizType = builder.bizType; this.extendInfo = builder.extendInfo; this.grayIconUrl = builder.grayIconUrl; this.icon = builder.icon; this.leafCodes = builder.leafCodes; this.materialInfo = builder.materialInfo; this.orderId = builder.orderId; this.partnerCode = builder.partnerCode; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceType = builder.produceType; this.requestId = builder.requestId; this.rootCode = builder.rootCode; this.status = builder.status; this.statusStr = builder.statusStr; this.submitAuditTimeStr = builder.submitAuditTimeStr; this.submitAuditTimeValue = builder.submitAuditTimeValue; this.submitStatus = builder.submitStatus; this.submitTimeStr = builder.submitTimeStr; this.submitTimeValue = builder.submitTimeValue; this.submitTimes = builder.submitTimes; this.trademarkName = builder.trademarkName; this.trademarkNameType = builder.trademarkNameType; this.trademarkNumber = builder.trademarkNumber; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return bitFlag */ public Integer getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceType */ public String getProduceType() { return this.produceType; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusStr */ public String getStatusStr() { return this.statusStr; } /** * @return submitAuditTimeStr */ public String getSubmitAuditTimeStr() { return this.submitAuditTimeStr; } /** * @return submitAuditTimeValue */ public Long getSubmitAuditTimeValue() { return this.submitAuditTimeValue; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTimeStr */ public String getSubmitTimeStr() { return this.submitTimeStr; } /** * @return submitTimeValue */ public Long getSubmitTimeValue() { return this.submitTimeValue; } /** * @return submitTimes */ public Integer getSubmitTimes() { return this.submitTimes; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } /** * @return trademarkNameType */ public Integer getTrademarkNameType() { return this.trademarkNameType; } /** * @return trademarkNumber */ public String getTrademarkNumber() { return this.trademarkNumber; } public static final class Builder { private Integer bitFlag; private String bizId; private String bizType; private java.util.Map < String, ? > extendInfo; private String grayIconUrl; private String icon; private LeafCodes leafCodes; private MaterialInfo materialInfo; private String orderId; private String partnerCode; private String principalKey; private String principalName; private String produceType; private String requestId; private RootCode rootCode; private String status; private String statusStr; private String submitAuditTimeStr; private Long submitAuditTimeValue; private String submitStatus; private String submitTimeStr; private Long submitTimeValue; private Integer submitTimes; private String trademarkName; private Integer trademarkNameType; private String trademarkNumber; /** * BitFlag. */ public Builder bitFlag(Integer bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProduceType. */ public Builder produceType(String produceType) { this.produceType = produceType; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusStr. */ public Builder statusStr(String statusStr) { this.statusStr = statusStr; return this; } /** * SubmitAuditTimeStr. */ public Builder submitAuditTimeStr(String submitAuditTimeStr) { this.submitAuditTimeStr = submitAuditTimeStr; return this; } /** * SubmitAuditTimeValue. */ public Builder submitAuditTimeValue(Long submitAuditTimeValue) { this.submitAuditTimeValue = submitAuditTimeValue; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTimeStr. */ public Builder submitTimeStr(String submitTimeStr) { this.submitTimeStr = submitTimeStr; return this; } /** * SubmitTimeValue. */ public Builder submitTimeValue(Long submitTimeValue) { this.submitTimeValue = submitTimeValue; return this; } /** * SubmitTimes. */ public Builder submitTimes(Integer submitTimes) { this.submitTimes = submitTimes; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } /** * TrademarkNameType. */ public Builder trademarkNameType(Integer trademarkNameType) { this.trademarkNameType = trademarkNameType; return this; } /** * TrademarkNumber. */ public Builder trademarkNumber(String trademarkNumber) { this.trademarkNumber = trademarkNumber; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelEspDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelEspDetailRequest} extends {@link RequestModel} * * <p>QueryTrademarkModelEspDetailRequest</p> */ public class QueryTrademarkModelEspDetailRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("BizType") private String bizType; private QueryTrademarkModelEspDetailRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.bizType = builder.bizType; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelEspDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } public static final class Builder extends Request.Builder<QueryTrademarkModelEspDetailRequest, Builder> { private String bizId; private String bizType; private Builder() { super(); } private Builder(QueryTrademarkModelEspDetailRequest request) { super(request); this.bizId = request.bizId; this.bizType = request.bizType; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.putQueryParameter("BizType", bizType); this.bizType = bizType; return this; } @Override public QueryTrademarkModelEspDetailRequest build() { return new QueryTrademarkModelEspDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelEspDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelEspDetailResponse} extends {@link TeaModel} * * <p>QueryTrademarkModelEspDetailResponse</p> */ public class QueryTrademarkModelEspDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkModelEspDetailResponseBody body; private QueryTrademarkModelEspDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkModelEspDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkModelEspDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkModelEspDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkModelEspDetailResponseBody body); @Override QueryTrademarkModelEspDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkModelEspDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkModelEspDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkModelEspDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkModelEspDetailResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkModelEspDetailResponse build() { return new QueryTrademarkModelEspDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelEspDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelEspDetailResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkModelEspDetailResponseBody</p> */ public class QueryTrademarkModelEspDetailResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; private QueryTrademarkModelEspDetailResponseBody(Builder builder) { this.moudle = builder.moudle; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelEspDetailResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } public static final class Builder { private Moudle moudle; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } public QueryTrademarkModelEspDetailResponseBody build() { return new QueryTrademarkModelEspDetailResponseBody(this); } } public static class LeafCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private LeafCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static LeafCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public LeafCode build() { return new LeafCode(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("leafCode") private java.util.List < LeafCode> leafCode; private LeafCodes(Builder builder) { this.leafCode = builder.leafCode; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCode */ public java.util.List < LeafCode> getLeafCode() { return this.leafCode; } public static final class Builder { private java.util.List < LeafCode> leafCode; /** * leafCode. */ public Builder leafCode(java.util.List < LeafCode> leafCode) { this.leafCode = leafCode; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactZipCode") private String contactZipCode; @NameInMap("Country") private String country; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaKey") private String loaKey; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private String personalType; @NameInMap("PostCode") private String postCode; @NameInMap("Province") private String province; @NameInMap("ReasonFileOssKey") private String reasonFileOssKey; @NameInMap("Region") private Integer region; @NameInMap("Type") private Integer type; private MaterialInfo(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.cnInfoUrl = builder.cnInfoUrl; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactZipCode = builder.contactZipCode; this.country = builder.country; this.eAddress = builder.eAddress; this.eName = builder.eName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaKey = builder.loaKey; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.postCode = builder.postCode; this.province = builder.province; this.reasonFileOssKey = builder.reasonFileOssKey; this.region = builder.region; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactZipCode */ public String getContactZipCode() { return this.contactZipCode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaKey */ public String getLoaKey() { return this.loaKey; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public String getPersonalType() { return this.personalType; } /** * @return postCode */ public String getPostCode() { return this.postCode; } /** * @return province */ public String getProvince() { return this.province; } /** * @return reasonFileOssKey */ public String getReasonFileOssKey() { return this.reasonFileOssKey; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String cnInfoUrl; private String contactAddress; private String contactEmail; private String contactZipCode; private String country; private String eAddress; private String eName; private String idCardNumber; private String idCardUrl; private String loaKey; private String loaUrl; private String name; private String passportUrl; private String personalType; private String postCode; private String province; private String reasonFileOssKey; private Integer region; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactZipCode. */ public Builder contactZipCode(String contactZipCode) { this.contactZipCode = contactZipCode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaKey. */ public Builder loaKey(String loaKey) { this.loaKey = loaKey; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(String personalType) { this.personalType = personalType; return this; } /** * PostCode. */ public Builder postCode(String postCode) { this.postCode = postCode; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * ReasonFileOssKey. */ public Builder reasonFileOssKey(String reasonFileOssKey) { this.reasonFileOssKey = reasonFileOssKey; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class RootCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private RootCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public RootCode build() { return new RootCode(this); } } } public static class Moudle extends TeaModel { @NameInMap("BitFlag") private Integer bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("BizType") private String bizType; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("Icon") private String icon; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("OrderId") private String orderId; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProduceType") private String produceType; @NameInMap("RequestId") private String requestId; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private String status; @NameInMap("StatusStr") private String statusStr; @NameInMap("SubmitAuditTime") private Long submitAuditTime; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTime") private Long submitTime; @NameInMap("SubmitTimes") private Integer submitTimes; @NameInMap("TrademarkName") private String trademarkName; @NameInMap("TrademarkNameType") private Integer trademarkNameType; @NameInMap("TrademarkNumber") private String trademarkNumber; private Moudle(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.bizType = builder.bizType; this.extendInfo = builder.extendInfo; this.grayIconUrl = builder.grayIconUrl; this.icon = builder.icon; this.leafCodes = builder.leafCodes; this.materialInfo = builder.materialInfo; this.orderId = builder.orderId; this.partnerCode = builder.partnerCode; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceType = builder.produceType; this.requestId = builder.requestId; this.rootCode = builder.rootCode; this.status = builder.status; this.statusStr = builder.statusStr; this.submitAuditTime = builder.submitAuditTime; this.submitStatus = builder.submitStatus; this.submitTime = builder.submitTime; this.submitTimes = builder.submitTimes; this.trademarkName = builder.trademarkName; this.trademarkNameType = builder.trademarkNameType; this.trademarkNumber = builder.trademarkNumber; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return bitFlag */ public Integer getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceType */ public String getProduceType() { return this.produceType; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusStr */ public String getStatusStr() { return this.statusStr; } /** * @return submitAuditTime */ public Long getSubmitAuditTime() { return this.submitAuditTime; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTime */ public Long getSubmitTime() { return this.submitTime; } /** * @return submitTimes */ public Integer getSubmitTimes() { return this.submitTimes; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } /** * @return trademarkNameType */ public Integer getTrademarkNameType() { return this.trademarkNameType; } /** * @return trademarkNumber */ public String getTrademarkNumber() { return this.trademarkNumber; } public static final class Builder { private Integer bitFlag; private String bizId; private String bizType; private java.util.Map < String, ? > extendInfo; private String grayIconUrl; private String icon; private LeafCodes leafCodes; private MaterialInfo materialInfo; private String orderId; private String partnerCode; private String principalKey; private String principalName; private String produceType; private String requestId; private RootCode rootCode; private String status; private String statusStr; private Long submitAuditTime; private String submitStatus; private Long submitTime; private Integer submitTimes; private String trademarkName; private Integer trademarkNameType; private String trademarkNumber; /** * BitFlag. */ public Builder bitFlag(Integer bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProduceType. */ public Builder produceType(String produceType) { this.produceType = produceType; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusStr. */ public Builder statusStr(String statusStr) { this.statusStr = statusStr; return this; } /** * SubmitAuditTime. */ public Builder submitAuditTime(Long submitAuditTime) { this.submitAuditTime = submitAuditTime; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTime. */ public Builder submitTime(Long submitTime) { this.submitTime = submitTime; return this; } /** * SubmitTimes. */ public Builder submitTimes(Integer submitTimes) { this.submitTimes = submitTimes; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } /** * TrademarkNameType. */ public Builder trademarkNameType(Integer trademarkNameType) { this.trademarkNameType = trademarkNameType; return this; } /** * TrademarkNumber. */ public Builder trademarkNumber(String trademarkNumber) { this.trademarkNumber = trademarkNumber; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelEspListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelEspListRequest} extends {@link RequestModel} * * <p>QueryTrademarkModelEspListRequest</p> */ public class QueryTrademarkModelEspListRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("BizType") private String bizType; @Query @NameInMap("Env") private String env; @Query @NameInMap("OrderId") private String orderId; @Query @NameInMap("OrderIdsStr") private String orderIdsStr; @Query @NameInMap("OrderInstanceId") private String orderInstanceId; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("PrincipalKey") private String principalKey; @Query @NameInMap("PrincipalName") private String principalName; @Query @NameInMap("Status") private String status; @Query @NameInMap("SubmitStatus") private String submitStatus; @Query @NameInMap("SubmitTime") private String submitTime; private QueryTrademarkModelEspListRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.bizType = builder.bizType; this.env = builder.env; this.orderId = builder.orderId; this.orderIdsStr = builder.orderIdsStr; this.orderInstanceId = builder.orderInstanceId; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.status = builder.status; this.submitStatus = builder.submitStatus; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelEspListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return env */ public String getEnv() { return this.env; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return orderIdsStr */ public String getOrderIdsStr() { return this.orderIdsStr; } /** * @return orderInstanceId */ public String getOrderInstanceId() { return this.orderInstanceId; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder extends Request.Builder<QueryTrademarkModelEspListRequest, Builder> { private String bizId; private String bizType; private String env; private String orderId; private String orderIdsStr; private String orderInstanceId; private Integer pageNum; private Integer pageSize; private String principalKey; private String principalName; private String status; private String submitStatus; private String submitTime; private Builder() { super(); } private Builder(QueryTrademarkModelEspListRequest request) { super(request); this.bizId = request.bizId; this.bizType = request.bizType; this.env = request.env; this.orderId = request.orderId; this.orderIdsStr = request.orderIdsStr; this.orderInstanceId = request.orderInstanceId; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.principalKey = request.principalKey; this.principalName = request.principalName; this.status = request.status; this.submitStatus = request.submitStatus; this.submitTime = request.submitTime; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.putQueryParameter("BizType", bizType); this.bizType = bizType; return this; } /** * Env. */ public Builder env(String env) { this.putQueryParameter("Env", env); this.env = env; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.putQueryParameter("OrderId", orderId); this.orderId = orderId; return this; } /** * OrderIdsStr. */ public Builder orderIdsStr(String orderIdsStr) { this.putQueryParameter("OrderIdsStr", orderIdsStr); this.orderIdsStr = orderIdsStr; return this; } /** * OrderInstanceId. */ public Builder orderInstanceId(String orderInstanceId) { this.putQueryParameter("OrderInstanceId", orderInstanceId); this.orderInstanceId = orderInstanceId; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.putQueryParameter("PrincipalKey", principalKey); this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.putQueryParameter("PrincipalName", principalName); this.principalName = principalName; return this; } /** * Status. */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.putQueryParameter("SubmitStatus", submitStatus); this.submitStatus = submitStatus; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.putQueryParameter("SubmitTime", submitTime); this.submitTime = submitTime; return this; } @Override public QueryTrademarkModelEspListRequest build() { return new QueryTrademarkModelEspListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelEspListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelEspListResponse} extends {@link TeaModel} * * <p>QueryTrademarkModelEspListResponse</p> */ public class QueryTrademarkModelEspListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkModelEspListResponseBody body; private QueryTrademarkModelEspListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkModelEspListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkModelEspListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkModelEspListResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkModelEspListResponseBody body); @Override QueryTrademarkModelEspListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkModelEspListResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkModelEspListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkModelEspListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkModelEspListResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkModelEspListResponse build() { return new QueryTrademarkModelEspListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelEspListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelEspListResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkModelEspListResponseBody</p> */ public class QueryTrademarkModelEspListResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; private QueryTrademarkModelEspListResponseBody(Builder builder) { this.moudle = builder.moudle; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelEspListResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } public static final class Builder { private Moudle moudle; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } public QueryTrademarkModelEspListResponseBody build() { return new QueryTrademarkModelEspListResponseBody(this); } } public static class LeafCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private LeafCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static LeafCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public LeafCode build() { return new LeafCode(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("leafCode") private java.util.List < LeafCode> leafCode; private LeafCodes(Builder builder) { this.leafCode = builder.leafCode; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCode */ public java.util.List < LeafCode> getLeafCode() { return this.leafCode; } public static final class Builder { private java.util.List < LeafCode> leafCode; /** * leafCode. */ public Builder leafCode(java.util.List < LeafCode> leafCode) { this.leafCode = leafCode; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactZipCode") private String contactZipCode; @NameInMap("Country") private String country; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaKey") private String loaKey; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private String personalType; @NameInMap("PostCode") private String postCode; @NameInMap("Province") private String province; @NameInMap("ReasonFileOssKey") private String reasonFileOssKey; @NameInMap("Region") private Integer region; @NameInMap("Type") private Integer type; private MaterialInfo(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.cnInfoUrl = builder.cnInfoUrl; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactZipCode = builder.contactZipCode; this.country = builder.country; this.eAddress = builder.eAddress; this.eName = builder.eName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaKey = builder.loaKey; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.postCode = builder.postCode; this.province = builder.province; this.reasonFileOssKey = builder.reasonFileOssKey; this.region = builder.region; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactZipCode */ public String getContactZipCode() { return this.contactZipCode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaKey */ public String getLoaKey() { return this.loaKey; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public String getPersonalType() { return this.personalType; } /** * @return postCode */ public String getPostCode() { return this.postCode; } /** * @return province */ public String getProvince() { return this.province; } /** * @return reasonFileOssKey */ public String getReasonFileOssKey() { return this.reasonFileOssKey; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String cnInfoUrl; private String contactAddress; private String contactEmail; private String contactZipCode; private String country; private String eAddress; private String eName; private String idCardNumber; private String idCardUrl; private String loaKey; private String loaUrl; private String name; private String passportUrl; private String personalType; private String postCode; private String province; private String reasonFileOssKey; private Integer region; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactZipCode. */ public Builder contactZipCode(String contactZipCode) { this.contactZipCode = contactZipCode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaKey. */ public Builder loaKey(String loaKey) { this.loaKey = loaKey; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(String personalType) { this.personalType = personalType; return this; } /** * PostCode. */ public Builder postCode(String postCode) { this.postCode = postCode; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * ReasonFileOssKey. */ public Builder reasonFileOssKey(String reasonFileOssKey) { this.reasonFileOssKey = reasonFileOssKey; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class RootCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private RootCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public RootCode build() { return new RootCode(this); } } } public static class Item extends TeaModel { @NameInMap("BitFlag") private Integer bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("BizType") private String bizType; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("Icon") private String icon; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("OrderId") private String orderId; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProduceType") private String produceType; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private String status; @NameInMap("StatusStr") private String statusStr; @NameInMap("SubmitAuditTime") private Long submitAuditTime; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTime") private Long submitTime; @NameInMap("SubmitTimes") private Integer submitTimes; @NameInMap("TrademarkName") private String trademarkName; @NameInMap("TrademarkNameType") private Integer trademarkNameType; @NameInMap("TrademarkNumber") private String trademarkNumber; private Item(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.bizType = builder.bizType; this.extendInfo = builder.extendInfo; this.grayIconUrl = builder.grayIconUrl; this.icon = builder.icon; this.leafCodes = builder.leafCodes; this.materialInfo = builder.materialInfo; this.orderId = builder.orderId; this.partnerCode = builder.partnerCode; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceType = builder.produceType; this.rootCode = builder.rootCode; this.status = builder.status; this.statusStr = builder.statusStr; this.submitAuditTime = builder.submitAuditTime; this.submitStatus = builder.submitStatus; this.submitTime = builder.submitTime; this.submitTimes = builder.submitTimes; this.trademarkName = builder.trademarkName; this.trademarkNameType = builder.trademarkNameType; this.trademarkNumber = builder.trademarkNumber; } public static Builder builder() { return new Builder(); } public static Item create() { return builder().build(); } /** * @return bitFlag */ public Integer getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceType */ public String getProduceType() { return this.produceType; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusStr */ public String getStatusStr() { return this.statusStr; } /** * @return submitAuditTime */ public Long getSubmitAuditTime() { return this.submitAuditTime; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTime */ public Long getSubmitTime() { return this.submitTime; } /** * @return submitTimes */ public Integer getSubmitTimes() { return this.submitTimes; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } /** * @return trademarkNameType */ public Integer getTrademarkNameType() { return this.trademarkNameType; } /** * @return trademarkNumber */ public String getTrademarkNumber() { return this.trademarkNumber; } public static final class Builder { private Integer bitFlag; private String bizId; private String bizType; private java.util.Map < String, ? > extendInfo; private String grayIconUrl; private String icon; private LeafCodes leafCodes; private MaterialInfo materialInfo; private String orderId; private String partnerCode; private String principalKey; private String principalName; private String produceType; private RootCode rootCode; private String status; private String statusStr; private Long submitAuditTime; private String submitStatus; private Long submitTime; private Integer submitTimes; private String trademarkName; private Integer trademarkNameType; private String trademarkNumber; /** * BitFlag. */ public Builder bitFlag(Integer bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProduceType. */ public Builder produceType(String produceType) { this.produceType = produceType; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusStr. */ public Builder statusStr(String statusStr) { this.statusStr = statusStr; return this; } /** * SubmitAuditTime. */ public Builder submitAuditTime(Long submitAuditTime) { this.submitAuditTime = submitAuditTime; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTime. */ public Builder submitTime(Long submitTime) { this.submitTime = submitTime; return this; } /** * SubmitTimes. */ public Builder submitTimes(Integer submitTimes) { this.submitTimes = submitTimes; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } /** * TrademarkNameType. */ public Builder trademarkNameType(Integer trademarkNameType) { this.trademarkNameType = trademarkNameType; return this; } /** * TrademarkNumber. */ public Builder trademarkNumber(String trademarkNumber) { this.trademarkNumber = trademarkNumber; return this; } public Item build() { return new Item(this); } } } public static class Data extends TeaModel { @NameInMap("item") private java.util.List < Item> item; private Data(Builder builder) { this.item = builder.item; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return item */ public java.util.List < Item> getItem() { return this.item; } public static final class Builder { private java.util.List < Item> item; /** * item. */ public Builder item(java.util.List < Item> item) { this.item = item; return this; } public Data build() { return new Data(this); } } } public static class Moudle extends TeaModel { @NameInMap("Data") private Data data; @NameInMap("RequestId") private String requestId; @NameInMap("TotalPageNum") private Integer totalPageNum; private Moudle(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Data data; private String requestId; private Integer totalPageNum; /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelListRequest} extends {@link RequestModel} * * <p>QueryTrademarkModelListRequest</p> */ public class QueryTrademarkModelListRequest extends Request { @Query @NameInMap("Env") private String env; @Query @NameInMap("OrderIdsStr") private String orderIdsStr; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("PrincipalKey") private String principalKey; @Query @NameInMap("PrincipalName") private String principalName; @Query @NameInMap("ProduceTypesStr") private String produceTypesStr; @Query @NameInMap("Status") private String status; @Query @NameInMap("SubmitStart") private String submitStart; @Query @NameInMap("SubmitStatus") private String submitStatus; @Query @NameInMap("SubmitTime") private String submitTime; private QueryTrademarkModelListRequest(Builder builder) { super(builder); this.env = builder.env; this.orderIdsStr = builder.orderIdsStr; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceTypesStr = builder.produceTypesStr; this.status = builder.status; this.submitStart = builder.submitStart; this.submitStatus = builder.submitStatus; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return env */ public String getEnv() { return this.env; } /** * @return orderIdsStr */ public String getOrderIdsStr() { return this.orderIdsStr; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceTypesStr */ public String getProduceTypesStr() { return this.produceTypesStr; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitStart */ public String getSubmitStart() { return this.submitStart; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder extends Request.Builder<QueryTrademarkModelListRequest, Builder> { private String env; private String orderIdsStr; private Integer pageNum; private Integer pageSize; private String principalKey; private String principalName; private String produceTypesStr; private String status; private String submitStart; private String submitStatus; private String submitTime; private Builder() { super(); } private Builder(QueryTrademarkModelListRequest request) { super(request); this.env = request.env; this.orderIdsStr = request.orderIdsStr; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.principalKey = request.principalKey; this.principalName = request.principalName; this.produceTypesStr = request.produceTypesStr; this.status = request.status; this.submitStart = request.submitStart; this.submitStatus = request.submitStatus; this.submitTime = request.submitTime; } /** * Env. */ public Builder env(String env) { this.putQueryParameter("Env", env); this.env = env; return this; } /** * OrderIdsStr. */ public Builder orderIdsStr(String orderIdsStr) { this.putQueryParameter("OrderIdsStr", orderIdsStr); this.orderIdsStr = orderIdsStr; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.putQueryParameter("PrincipalKey", principalKey); this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.putQueryParameter("PrincipalName", principalName); this.principalName = principalName; return this; } /** * ProduceTypesStr. */ public Builder produceTypesStr(String produceTypesStr) { this.putQueryParameter("ProduceTypesStr", produceTypesStr); this.produceTypesStr = produceTypesStr; return this; } /** * Status. */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } /** * SubmitStart. */ public Builder submitStart(String submitStart) { this.putQueryParameter("SubmitStart", submitStart); this.submitStart = submitStart; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.putQueryParameter("SubmitStatus", submitStatus); this.submitStatus = submitStatus; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.putQueryParameter("SubmitTime", submitTime); this.submitTime = submitTime; return this; } @Override public QueryTrademarkModelListRequest build() { return new QueryTrademarkModelListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelListResponse} extends {@link TeaModel} * * <p>QueryTrademarkModelListResponse</p> */ public class QueryTrademarkModelListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkModelListResponseBody body; private QueryTrademarkModelListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkModelListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkModelListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkModelListResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkModelListResponseBody body); @Override QueryTrademarkModelListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkModelListResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkModelListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkModelListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkModelListResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkModelListResponse build() { return new QueryTrademarkModelListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkModelListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkModelListResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkModelListResponseBody</p> */ public class QueryTrademarkModelListResponseBody extends TeaModel { @NameInMap("Moudle") private Moudle moudle; private QueryTrademarkModelListResponseBody(Builder builder) { this.moudle = builder.moudle; } public static Builder builder() { return new Builder(); } public static QueryTrademarkModelListResponseBody create() { return builder().build(); } /** * @return moudle */ public Moudle getMoudle() { return this.moudle; } public static final class Builder { private Moudle moudle; /** * Moudle. */ public Builder moudle(Moudle moudle) { this.moudle = moudle; return this; } public QueryTrademarkModelListResponseBody build() { return new QueryTrademarkModelListResponseBody(this); } } public static class LeafCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private LeafCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static LeafCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public LeafCode build() { return new LeafCode(this); } } } public static class LeafCodes extends TeaModel { @NameInMap("leafCode") private java.util.List < LeafCode> leafCode; private LeafCodes(Builder builder) { this.leafCode = builder.leafCode; } public static Builder builder() { return new Builder(); } public static LeafCodes create() { return builder().build(); } /** * @return leafCode */ public java.util.List < LeafCode> getLeafCode() { return this.leafCode; } public static final class Builder { private java.util.List < LeafCode> leafCode; /** * leafCode. */ public Builder leafCode(java.util.List < LeafCode> leafCode) { this.leafCode = leafCode; return this; } public LeafCodes build() { return new LeafCodes(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Address") private String address; @NameInMap("BusinessLicenceUrl") private String businessLicenceUrl; @NameInMap("CardNumber") private String cardNumber; @NameInMap("CnInfoUrl") private String cnInfoUrl; @NameInMap("ContactAddress") private String contactAddress; @NameInMap("ContactEmail") private String contactEmail; @NameInMap("ContactZipCode") private String contactZipCode; @NameInMap("Country") private String country; @NameInMap("EAddress") private String eAddress; @NameInMap("EName") private String eName; @NameInMap("IdCardNumber") private String idCardNumber; @NameInMap("IdCardUrl") private String idCardUrl; @NameInMap("LoaKey") private String loaKey; @NameInMap("LoaUrl") private String loaUrl; @NameInMap("Name") private String name; @NameInMap("PassportUrl") private String passportUrl; @NameInMap("PersonalType") private Integer personalType; @NameInMap("PostCode") private String postCode; @NameInMap("Province") private String province; @NameInMap("ReasonFileOssKey") private String reasonFileOssKey; @NameInMap("Region") private Integer region; @NameInMap("Type") private Integer type; private MaterialInfo(Builder builder) { this.address = builder.address; this.businessLicenceUrl = builder.businessLicenceUrl; this.cardNumber = builder.cardNumber; this.cnInfoUrl = builder.cnInfoUrl; this.contactAddress = builder.contactAddress; this.contactEmail = builder.contactEmail; this.contactZipCode = builder.contactZipCode; this.country = builder.country; this.eAddress = builder.eAddress; this.eName = builder.eName; this.idCardNumber = builder.idCardNumber; this.idCardUrl = builder.idCardUrl; this.loaKey = builder.loaKey; this.loaUrl = builder.loaUrl; this.name = builder.name; this.passportUrl = builder.passportUrl; this.personalType = builder.personalType; this.postCode = builder.postCode; this.province = builder.province; this.reasonFileOssKey = builder.reasonFileOssKey; this.region = builder.region; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return address */ public String getAddress() { return this.address; } /** * @return businessLicenceUrl */ public String getBusinessLicenceUrl() { return this.businessLicenceUrl; } /** * @return cardNumber */ public String getCardNumber() { return this.cardNumber; } /** * @return cnInfoUrl */ public String getCnInfoUrl() { return this.cnInfoUrl; } /** * @return contactAddress */ public String getContactAddress() { return this.contactAddress; } /** * @return contactEmail */ public String getContactEmail() { return this.contactEmail; } /** * @return contactZipCode */ public String getContactZipCode() { return this.contactZipCode; } /** * @return country */ public String getCountry() { return this.country; } /** * @return eAddress */ public String getEAddress() { return this.eAddress; } /** * @return eName */ public String getEName() { return this.eName; } /** * @return idCardNumber */ public String getIdCardNumber() { return this.idCardNumber; } /** * @return idCardUrl */ public String getIdCardUrl() { return this.idCardUrl; } /** * @return loaKey */ public String getLoaKey() { return this.loaKey; } /** * @return loaUrl */ public String getLoaUrl() { return this.loaUrl; } /** * @return name */ public String getName() { return this.name; } /** * @return passportUrl */ public String getPassportUrl() { return this.passportUrl; } /** * @return personalType */ public Integer getPersonalType() { return this.personalType; } /** * @return postCode */ public String getPostCode() { return this.postCode; } /** * @return province */ public String getProvince() { return this.province; } /** * @return reasonFileOssKey */ public String getReasonFileOssKey() { return this.reasonFileOssKey; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder { private String address; private String businessLicenceUrl; private String cardNumber; private String cnInfoUrl; private String contactAddress; private String contactEmail; private String contactZipCode; private String country; private String eAddress; private String eName; private String idCardNumber; private String idCardUrl; private String loaKey; private String loaUrl; private String name; private String passportUrl; private Integer personalType; private String postCode; private String province; private String reasonFileOssKey; private Integer region; private Integer type; /** * Address. */ public Builder address(String address) { this.address = address; return this; } /** * BusinessLicenceUrl. */ public Builder businessLicenceUrl(String businessLicenceUrl) { this.businessLicenceUrl = businessLicenceUrl; return this; } /** * CardNumber. */ public Builder cardNumber(String cardNumber) { this.cardNumber = cardNumber; return this; } /** * CnInfoUrl. */ public Builder cnInfoUrl(String cnInfoUrl) { this.cnInfoUrl = cnInfoUrl; return this; } /** * ContactAddress. */ public Builder contactAddress(String contactAddress) { this.contactAddress = contactAddress; return this; } /** * ContactEmail. */ public Builder contactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } /** * ContactZipCode. */ public Builder contactZipCode(String contactZipCode) { this.contactZipCode = contactZipCode; return this; } /** * Country. */ public Builder country(String country) { this.country = country; return this; } /** * EAddress. */ public Builder eAddress(String eAddress) { this.eAddress = eAddress; return this; } /** * EName. */ public Builder eName(String eName) { this.eName = eName; return this; } /** * IdCardNumber. */ public Builder idCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; return this; } /** * IdCardUrl. */ public Builder idCardUrl(String idCardUrl) { this.idCardUrl = idCardUrl; return this; } /** * LoaKey. */ public Builder loaKey(String loaKey) { this.loaKey = loaKey; return this; } /** * LoaUrl. */ public Builder loaUrl(String loaUrl) { this.loaUrl = loaUrl; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * PassportUrl. */ public Builder passportUrl(String passportUrl) { this.passportUrl = passportUrl; return this; } /** * PersonalType. */ public Builder personalType(Integer personalType) { this.personalType = personalType; return this; } /** * PostCode. */ public Builder postCode(String postCode) { this.postCode = postCode; return this; } /** * Province. */ public Builder province(String province) { this.province = province; return this; } /** * ReasonFileOssKey. */ public Builder reasonFileOssKey(String reasonFileOssKey) { this.reasonFileOssKey = reasonFileOssKey; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * Type. */ public Builder type(Integer type) { this.type = type; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class RootCode extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; private RootCode(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; } public static Builder builder() { return new Builder(); } public static RootCode create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } public static final class Builder { private String classificationCode; private String classificationName; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } public RootCode build() { return new RootCode(this); } } } public static class Item extends TeaModel { @NameInMap("BitFlag") private Integer bitFlag; @NameInMap("BizId") private String bizId; @NameInMap("BizType") private String bizType; @NameInMap("ExtendInfo") private java.util.Map < String, ? > extendInfo; @NameInMap("GrayIconUrl") private String grayIconUrl; @NameInMap("Icon") private String icon; @NameInMap("LeafCodes") private LeafCodes leafCodes; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("OrderId") private String orderId; @NameInMap("PartnerCode") private String partnerCode; @NameInMap("PrincipalKey") private String principalKey; @NameInMap("PrincipalName") private String principalName; @NameInMap("ProduceType") private String produceType; @NameInMap("RootCode") private RootCode rootCode; @NameInMap("Status") private String status; @NameInMap("StatusStr") private String statusStr; @NameInMap("SubmitAuditTimeStr") private String submitAuditTimeStr; @NameInMap("SubmitAuditTimeValue") private Long submitAuditTimeValue; @NameInMap("SubmitStatus") private String submitStatus; @NameInMap("SubmitTimeStr") private String submitTimeStr; @NameInMap("SubmitTimeValue") private Long submitTimeValue; @NameInMap("SubmitTimes") private Integer submitTimes; @NameInMap("TrademarkName") private String trademarkName; @NameInMap("TrademarkNameType") private Integer trademarkNameType; @NameInMap("TrademarkNumber") private String trademarkNumber; private Item(Builder builder) { this.bitFlag = builder.bitFlag; this.bizId = builder.bizId; this.bizType = builder.bizType; this.extendInfo = builder.extendInfo; this.grayIconUrl = builder.grayIconUrl; this.icon = builder.icon; this.leafCodes = builder.leafCodes; this.materialInfo = builder.materialInfo; this.orderId = builder.orderId; this.partnerCode = builder.partnerCode; this.principalKey = builder.principalKey; this.principalName = builder.principalName; this.produceType = builder.produceType; this.rootCode = builder.rootCode; this.status = builder.status; this.statusStr = builder.statusStr; this.submitAuditTimeStr = builder.submitAuditTimeStr; this.submitAuditTimeValue = builder.submitAuditTimeValue; this.submitStatus = builder.submitStatus; this.submitTimeStr = builder.submitTimeStr; this.submitTimeValue = builder.submitTimeValue; this.submitTimes = builder.submitTimes; this.trademarkName = builder.trademarkName; this.trademarkNameType = builder.trademarkNameType; this.trademarkNumber = builder.trademarkNumber; } public static Builder builder() { return new Builder(); } public static Item create() { return builder().build(); } /** * @return bitFlag */ public Integer getBitFlag() { return this.bitFlag; } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return extendInfo */ public java.util.Map < String, ? > getExtendInfo() { return this.extendInfo; } /** * @return grayIconUrl */ public String getGrayIconUrl() { return this.grayIconUrl; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return leafCodes */ public LeafCodes getLeafCodes() { return this.leafCodes; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return orderId */ public String getOrderId() { return this.orderId; } /** * @return partnerCode */ public String getPartnerCode() { return this.partnerCode; } /** * @return principalKey */ public String getPrincipalKey() { return this.principalKey; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } /** * @return produceType */ public String getProduceType() { return this.produceType; } /** * @return rootCode */ public RootCode getRootCode() { return this.rootCode; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusStr */ public String getStatusStr() { return this.statusStr; } /** * @return submitAuditTimeStr */ public String getSubmitAuditTimeStr() { return this.submitAuditTimeStr; } /** * @return submitAuditTimeValue */ public Long getSubmitAuditTimeValue() { return this.submitAuditTimeValue; } /** * @return submitStatus */ public String getSubmitStatus() { return this.submitStatus; } /** * @return submitTimeStr */ public String getSubmitTimeStr() { return this.submitTimeStr; } /** * @return submitTimeValue */ public Long getSubmitTimeValue() { return this.submitTimeValue; } /** * @return submitTimes */ public Integer getSubmitTimes() { return this.submitTimes; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } /** * @return trademarkNameType */ public Integer getTrademarkNameType() { return this.trademarkNameType; } /** * @return trademarkNumber */ public String getTrademarkNumber() { return this.trademarkNumber; } public static final class Builder { private Integer bitFlag; private String bizId; private String bizType; private java.util.Map < String, ? > extendInfo; private String grayIconUrl; private String icon; private LeafCodes leafCodes; private MaterialInfo materialInfo; private String orderId; private String partnerCode; private String principalKey; private String principalName; private String produceType; private RootCode rootCode; private String status; private String statusStr; private String submitAuditTimeStr; private Long submitAuditTimeValue; private String submitStatus; private String submitTimeStr; private Long submitTimeValue; private Integer submitTimes; private String trademarkName; private Integer trademarkNameType; private String trademarkNumber; /** * BitFlag. */ public Builder bitFlag(Integer bitFlag) { this.bitFlag = bitFlag; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.bizId = bizId; return this; } /** * BizType. */ public Builder bizType(String bizType) { this.bizType = bizType; return this; } /** * ExtendInfo. */ public Builder extendInfo(java.util.Map < String, ? > extendInfo) { this.extendInfo = extendInfo; return this; } /** * GrayIconUrl. */ public Builder grayIconUrl(String grayIconUrl) { this.grayIconUrl = grayIconUrl; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * LeafCodes. */ public Builder leafCodes(LeafCodes leafCodes) { this.leafCodes = leafCodes; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * OrderId. */ public Builder orderId(String orderId) { this.orderId = orderId; return this; } /** * PartnerCode. */ public Builder partnerCode(String partnerCode) { this.partnerCode = partnerCode; return this; } /** * PrincipalKey. */ public Builder principalKey(String principalKey) { this.principalKey = principalKey; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.principalName = principalName; return this; } /** * ProduceType. */ public Builder produceType(String produceType) { this.produceType = produceType; return this; } /** * RootCode. */ public Builder rootCode(RootCode rootCode) { this.rootCode = rootCode; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusStr. */ public Builder statusStr(String statusStr) { this.statusStr = statusStr; return this; } /** * SubmitAuditTimeStr. */ public Builder submitAuditTimeStr(String submitAuditTimeStr) { this.submitAuditTimeStr = submitAuditTimeStr; return this; } /** * SubmitAuditTimeValue. */ public Builder submitAuditTimeValue(Long submitAuditTimeValue) { this.submitAuditTimeValue = submitAuditTimeValue; return this; } /** * SubmitStatus. */ public Builder submitStatus(String submitStatus) { this.submitStatus = submitStatus; return this; } /** * SubmitTimeStr. */ public Builder submitTimeStr(String submitTimeStr) { this.submitTimeStr = submitTimeStr; return this; } /** * SubmitTimeValue. */ public Builder submitTimeValue(Long submitTimeValue) { this.submitTimeValue = submitTimeValue; return this; } /** * SubmitTimes. */ public Builder submitTimes(Integer submitTimes) { this.submitTimes = submitTimes; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } /** * TrademarkNameType. */ public Builder trademarkNameType(Integer trademarkNameType) { this.trademarkNameType = trademarkNameType; return this; } /** * TrademarkNumber. */ public Builder trademarkNumber(String trademarkNumber) { this.trademarkNumber = trademarkNumber; return this; } public Item build() { return new Item(this); } } } public static class Data extends TeaModel { @NameInMap("item") private java.util.List < Item> item; private Data(Builder builder) { this.item = builder.item; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return item */ public java.util.List < Item> getItem() { return this.item; } public static final class Builder { private java.util.List < Item> item; /** * item. */ public Builder item(java.util.List < Item> item) { this.item = item; return this; } public Data build() { return new Data(this); } } } public static class Moudle extends TeaModel { @NameInMap("Data") private Data data; @NameInMap("RequestId") private String requestId; @NameInMap("TotalPageNum") private Integer totalPageNum; private Moudle(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static Moudle create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Data data; private String requestId; private Integer totalPageNum; /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public Moudle build() { return new Moudle(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkMonitorResultsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkMonitorResultsRequest} extends {@link RequestModel} * * <p>QueryTrademarkMonitorResultsRequest</p> */ public class QueryTrademarkMonitorResultsRequest extends Request { @Query @NameInMap("ActionType") private Integer actionType; @Query @NameInMap("ApplyYear") private String applyYear; @Query @NameInMap("Classification") private String classification; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("ProcedureStatus") private Integer procedureStatus; @Query @NameInMap("RegistrationNumber") private String registrationNumber; @Query @NameInMap("RuleId") @Validation(required = true) private Long ruleId; @Query @NameInMap("TmName") private String tmName; private QueryTrademarkMonitorResultsRequest(Builder builder) { super(builder); this.actionType = builder.actionType; this.applyYear = builder.applyYear; this.classification = builder.classification; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.procedureStatus = builder.procedureStatus; this.registrationNumber = builder.registrationNumber; this.ruleId = builder.ruleId; this.tmName = builder.tmName; } public static Builder builder() { return new Builder(); } public static QueryTrademarkMonitorResultsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return actionType */ public Integer getActionType() { return this.actionType; } /** * @return applyYear */ public String getApplyYear() { return this.applyYear; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return procedureStatus */ public Integer getProcedureStatus() { return this.procedureStatus; } /** * @return registrationNumber */ public String getRegistrationNumber() { return this.registrationNumber; } /** * @return ruleId */ public Long getRuleId() { return this.ruleId; } /** * @return tmName */ public String getTmName() { return this.tmName; } public static final class Builder extends Request.Builder<QueryTrademarkMonitorResultsRequest, Builder> { private Integer actionType; private String applyYear; private String classification; private Integer pageNum; private Integer pageSize; private Integer procedureStatus; private String registrationNumber; private Long ruleId; private String tmName; private Builder() { super(); } private Builder(QueryTrademarkMonitorResultsRequest request) { super(request); this.actionType = request.actionType; this.applyYear = request.applyYear; this.classification = request.classification; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.procedureStatus = request.procedureStatus; this.registrationNumber = request.registrationNumber; this.ruleId = request.ruleId; this.tmName = request.tmName; } /** * ActionType. */ public Builder actionType(Integer actionType) { this.putQueryParameter("ActionType", actionType); this.actionType = actionType; return this; } /** * ApplyYear. */ public Builder applyYear(String applyYear) { this.putQueryParameter("ApplyYear", applyYear); this.applyYear = applyYear; return this; } /** * Classification. */ public Builder classification(String classification) { this.putQueryParameter("Classification", classification); this.classification = classification; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * ProcedureStatus. */ public Builder procedureStatus(Integer procedureStatus) { this.putQueryParameter("ProcedureStatus", procedureStatus); this.procedureStatus = procedureStatus; return this; } /** * RegistrationNumber. */ public Builder registrationNumber(String registrationNumber) { this.putQueryParameter("RegistrationNumber", registrationNumber); this.registrationNumber = registrationNumber; return this; } /** * RuleId. */ public Builder ruleId(Long ruleId) { this.putQueryParameter("RuleId", ruleId); this.ruleId = ruleId; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.putQueryParameter("TmName", tmName); this.tmName = tmName; return this; } @Override public QueryTrademarkMonitorResultsRequest build() { return new QueryTrademarkMonitorResultsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkMonitorResultsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkMonitorResultsResponse} extends {@link TeaModel} * * <p>QueryTrademarkMonitorResultsResponse</p> */ public class QueryTrademarkMonitorResultsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkMonitorResultsResponseBody body; private QueryTrademarkMonitorResultsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkMonitorResultsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkMonitorResultsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkMonitorResultsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkMonitorResultsResponseBody body); @Override QueryTrademarkMonitorResultsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkMonitorResultsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkMonitorResultsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkMonitorResultsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkMonitorResultsResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkMonitorResultsResponse build() { return new QueryTrademarkMonitorResultsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkMonitorResultsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkMonitorResultsResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkMonitorResultsResponseBody</p> */ public class QueryTrademarkMonitorResultsResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("NextPage") private Boolean nextPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("PrePage") private Boolean prePage; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTrademarkMonitorResultsResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.nextPage = builder.nextPage; this.pageSize = builder.pageSize; this.prePage = builder.prePage; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTrademarkMonitorResultsResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return nextPage */ public Boolean getNextPage() { return this.nextPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return prePage */ public Boolean getPrePage() { return this.prePage; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Boolean nextPage; private Integer pageSize; private Boolean prePage; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * NextPage. */ public Builder nextPage(Boolean nextPage) { this.nextPage = nextPage; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * PrePage. */ public Builder prePage(Boolean prePage) { this.prePage = prePage; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTrademarkMonitorResultsResponseBody build() { return new QueryTrademarkMonitorResultsResponseBody(this); } } public static class TmMonitorResult extends TeaModel { @NameInMap("ApplyDate") private String applyDate; @NameInMap("ChesanEndDate") private String chesanEndDate; @NameInMap("Classification") private String classification; @NameInMap("DataCreateTime") private Long dataCreateTime; @NameInMap("DataUpdateTime") private Long dataUpdateTime; @NameInMap("OwnerEnName") private String ownerEnName; @NameInMap("OwnerName") private String ownerName; @NameInMap("RegistrationNumber") private String registrationNumber; @NameInMap("RuleId") private String ruleId; @NameInMap("TmImage") private String tmImage; @NameInMap("TmName") private String tmName; @NameInMap("TmProcedureStatusDesc") private String tmProcedureStatusDesc; @NameInMap("TmUid") private String tmUid; @NameInMap("UserId") private String userId; @NameInMap("WuxiaoEndDate") private String wuxiaoEndDate; @NameInMap("XuzhanEndDate") private String xuzhanEndDate; @NameInMap("YiyiEndDate") private String yiyiEndDate; private TmMonitorResult(Builder builder) { this.applyDate = builder.applyDate; this.chesanEndDate = builder.chesanEndDate; this.classification = builder.classification; this.dataCreateTime = builder.dataCreateTime; this.dataUpdateTime = builder.dataUpdateTime; this.ownerEnName = builder.ownerEnName; this.ownerName = builder.ownerName; this.registrationNumber = builder.registrationNumber; this.ruleId = builder.ruleId; this.tmImage = builder.tmImage; this.tmName = builder.tmName; this.tmProcedureStatusDesc = builder.tmProcedureStatusDesc; this.tmUid = builder.tmUid; this.userId = builder.userId; this.wuxiaoEndDate = builder.wuxiaoEndDate; this.xuzhanEndDate = builder.xuzhanEndDate; this.yiyiEndDate = builder.yiyiEndDate; } public static Builder builder() { return new Builder(); } public static TmMonitorResult create() { return builder().build(); } /** * @return applyDate */ public String getApplyDate() { return this.applyDate; } /** * @return chesanEndDate */ public String getChesanEndDate() { return this.chesanEndDate; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return dataCreateTime */ public Long getDataCreateTime() { return this.dataCreateTime; } /** * @return dataUpdateTime */ public Long getDataUpdateTime() { return this.dataUpdateTime; } /** * @return ownerEnName */ public String getOwnerEnName() { return this.ownerEnName; } /** * @return ownerName */ public String getOwnerName() { return this.ownerName; } /** * @return registrationNumber */ public String getRegistrationNumber() { return this.registrationNumber; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return tmImage */ public String getTmImage() { return this.tmImage; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return tmProcedureStatusDesc */ public String getTmProcedureStatusDesc() { return this.tmProcedureStatusDesc; } /** * @return tmUid */ public String getTmUid() { return this.tmUid; } /** * @return userId */ public String getUserId() { return this.userId; } /** * @return wuxiaoEndDate */ public String getWuxiaoEndDate() { return this.wuxiaoEndDate; } /** * @return xuzhanEndDate */ public String getXuzhanEndDate() { return this.xuzhanEndDate; } /** * @return yiyiEndDate */ public String getYiyiEndDate() { return this.yiyiEndDate; } public static final class Builder { private String applyDate; private String chesanEndDate; private String classification; private Long dataCreateTime; private Long dataUpdateTime; private String ownerEnName; private String ownerName; private String registrationNumber; private String ruleId; private String tmImage; private String tmName; private String tmProcedureStatusDesc; private String tmUid; private String userId; private String wuxiaoEndDate; private String xuzhanEndDate; private String yiyiEndDate; /** * ApplyDate. */ public Builder applyDate(String applyDate) { this.applyDate = applyDate; return this; } /** * ChesanEndDate. */ public Builder chesanEndDate(String chesanEndDate) { this.chesanEndDate = chesanEndDate; return this; } /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * DataCreateTime. */ public Builder dataCreateTime(Long dataCreateTime) { this.dataCreateTime = dataCreateTime; return this; } /** * DataUpdateTime. */ public Builder dataUpdateTime(Long dataUpdateTime) { this.dataUpdateTime = dataUpdateTime; return this; } /** * OwnerEnName. */ public Builder ownerEnName(String ownerEnName) { this.ownerEnName = ownerEnName; return this; } /** * OwnerName. */ public Builder ownerName(String ownerName) { this.ownerName = ownerName; return this; } /** * RegistrationNumber. */ public Builder registrationNumber(String registrationNumber) { this.registrationNumber = registrationNumber; return this; } /** * RuleId. */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * TmImage. */ public Builder tmImage(String tmImage) { this.tmImage = tmImage; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.tmName = tmName; return this; } /** * TmProcedureStatusDesc. */ public Builder tmProcedureStatusDesc(String tmProcedureStatusDesc) { this.tmProcedureStatusDesc = tmProcedureStatusDesc; return this; } /** * TmUid. */ public Builder tmUid(String tmUid) { this.tmUid = tmUid; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } /** * WuxiaoEndDate. */ public Builder wuxiaoEndDate(String wuxiaoEndDate) { this.wuxiaoEndDate = wuxiaoEndDate; return this; } /** * XuzhanEndDate. */ public Builder xuzhanEndDate(String xuzhanEndDate) { this.xuzhanEndDate = xuzhanEndDate; return this; } /** * YiyiEndDate. */ public Builder yiyiEndDate(String yiyiEndDate) { this.yiyiEndDate = yiyiEndDate; return this; } public TmMonitorResult build() { return new TmMonitorResult(this); } } } public static class Data extends TeaModel { @NameInMap("TmMonitorResult") private java.util.List < TmMonitorResult> tmMonitorResult; private Data(Builder builder) { this.tmMonitorResult = builder.tmMonitorResult; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return tmMonitorResult */ public java.util.List < TmMonitorResult> getTmMonitorResult() { return this.tmMonitorResult; } public static final class Builder { private java.util.List < TmMonitorResult> tmMonitorResult; /** * TmMonitorResult. */ public Builder tmMonitorResult(java.util.List < TmMonitorResult> tmMonitorResult) { this.tmMonitorResult = tmMonitorResult; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkMonitorRulesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkMonitorRulesRequest} extends {@link RequestModel} * * <p>QueryTrademarkMonitorRulesRequest</p> */ public class QueryTrademarkMonitorRulesRequest extends Request { @Query @NameInMap("Id") private String id; @Query @NameInMap("NotifyUpdate") private Integer notifyUpdate; @Query @NameInMap("PageNum") private Integer pageNum; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("RuleName") private String ruleName; private QueryTrademarkMonitorRulesRequest(Builder builder) { super(builder); this.id = builder.id; this.notifyUpdate = builder.notifyUpdate; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.ruleName = builder.ruleName; } public static Builder builder() { return new Builder(); } public static QueryTrademarkMonitorRulesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return id */ public String getId() { return this.id; } /** * @return notifyUpdate */ public Integer getNotifyUpdate() { return this.notifyUpdate; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } public static final class Builder extends Request.Builder<QueryTrademarkMonitorRulesRequest, Builder> { private String id; private Integer notifyUpdate; private Integer pageNum; private Integer pageSize; private String ruleName; private Builder() { super(); } private Builder(QueryTrademarkMonitorRulesRequest request) { super(request); this.id = request.id; this.notifyUpdate = request.notifyUpdate; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.ruleName = request.ruleName; } /** * Id. */ public Builder id(String id) { this.putQueryParameter("Id", id); this.id = id; return this; } /** * NotifyUpdate. */ public Builder notifyUpdate(Integer notifyUpdate) { this.putQueryParameter("NotifyUpdate", notifyUpdate); this.notifyUpdate = notifyUpdate; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * RuleName. */ public Builder ruleName(String ruleName) { this.putQueryParameter("RuleName", ruleName); this.ruleName = ruleName; return this; } @Override public QueryTrademarkMonitorRulesRequest build() { return new QueryTrademarkMonitorRulesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkMonitorRulesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkMonitorRulesResponse} extends {@link TeaModel} * * <p>QueryTrademarkMonitorRulesResponse</p> */ public class QueryTrademarkMonitorRulesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkMonitorRulesResponseBody body; private QueryTrademarkMonitorRulesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkMonitorRulesResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkMonitorRulesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkMonitorRulesResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkMonitorRulesResponseBody body); @Override QueryTrademarkMonitorRulesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkMonitorRulesResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkMonitorRulesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkMonitorRulesResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkMonitorRulesResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkMonitorRulesResponse build() { return new QueryTrademarkMonitorRulesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkMonitorRulesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkMonitorRulesResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkMonitorRulesResponseBody</p> */ public class QueryTrademarkMonitorRulesResponseBody extends TeaModel { @NameInMap("CurrentPageNum") private Integer currentPageNum; @NameInMap("Data") private Data data; @NameInMap("NextPage") private Boolean nextPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("PrePage") private Boolean prePage; @NameInMap("RequestId") private String requestId; @NameInMap("TotalItemNum") private Integer totalItemNum; @NameInMap("TotalPageNum") private Integer totalPageNum; private QueryTrademarkMonitorRulesResponseBody(Builder builder) { this.currentPageNum = builder.currentPageNum; this.data = builder.data; this.nextPage = builder.nextPage; this.pageSize = builder.pageSize; this.prePage = builder.prePage; this.requestId = builder.requestId; this.totalItemNum = builder.totalItemNum; this.totalPageNum = builder.totalPageNum; } public static Builder builder() { return new Builder(); } public static QueryTrademarkMonitorRulesResponseBody create() { return builder().build(); } /** * @return currentPageNum */ public Integer getCurrentPageNum() { return this.currentPageNum; } /** * @return data */ public Data getData() { return this.data; } /** * @return nextPage */ public Boolean getNextPage() { return this.nextPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return prePage */ public Boolean getPrePage() { return this.prePage; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalItemNum */ public Integer getTotalItemNum() { return this.totalItemNum; } /** * @return totalPageNum */ public Integer getTotalPageNum() { return this.totalPageNum; } public static final class Builder { private Integer currentPageNum; private Data data; private Boolean nextPage; private Integer pageSize; private Boolean prePage; private String requestId; private Integer totalItemNum; private Integer totalPageNum; /** * CurrentPageNum. */ public Builder currentPageNum(Integer currentPageNum) { this.currentPageNum = currentPageNum; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * NextPage. */ public Builder nextPage(Boolean nextPage) { this.nextPage = nextPage; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * PrePage. */ public Builder prePage(Boolean prePage) { this.prePage = prePage; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalItemNum. */ public Builder totalItemNum(Integer totalItemNum) { this.totalItemNum = totalItemNum; return this; } /** * TotalPageNum. */ public Builder totalPageNum(Integer totalPageNum) { this.totalPageNum = totalPageNum; return this; } public QueryTrademarkMonitorRulesResponseBody build() { return new QueryTrademarkMonitorRulesResponseBody(this); } } public static class TmMonitorRule extends TeaModel { @NameInMap("CreateTime") private String createTime; @NameInMap("EndTime") private String endTime; @NameInMap("Env") private String env; @NameInMap("Id") private String id; @NameInMap("LastFinishTime") private String lastFinishTime; @NameInMap("LastRunTime") private String lastRunTime; @NameInMap("LastUpdateTime") private String lastUpdateTime; @NameInMap("NotifyUpdate") private Integer notifyUpdate; @NameInMap("RuleDetail") private String ruleDetail; @NameInMap("RuleExtend") private String ruleExtend; @NameInMap("RuleKeyword") private String ruleKeyword; @NameInMap("RuleName") private String ruleName; @NameInMap("RuleSource") private String ruleSource; @NameInMap("RuleStatus") private String ruleStatus; @NameInMap("RuleType") private Integer ruleType; @NameInMap("StartTime") private String startTime; @NameInMap("UpdateTime") private String updateTime; @NameInMap("UserId") private String userId; @NameInMap("Version") private Integer version; private TmMonitorRule(Builder builder) { this.createTime = builder.createTime; this.endTime = builder.endTime; this.env = builder.env; this.id = builder.id; this.lastFinishTime = builder.lastFinishTime; this.lastRunTime = builder.lastRunTime; this.lastUpdateTime = builder.lastUpdateTime; this.notifyUpdate = builder.notifyUpdate; this.ruleDetail = builder.ruleDetail; this.ruleExtend = builder.ruleExtend; this.ruleKeyword = builder.ruleKeyword; this.ruleName = builder.ruleName; this.ruleSource = builder.ruleSource; this.ruleStatus = builder.ruleStatus; this.ruleType = builder.ruleType; this.startTime = builder.startTime; this.updateTime = builder.updateTime; this.userId = builder.userId; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static TmMonitorRule create() { return builder().build(); } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return endTime */ public String getEndTime() { return this.endTime; } /** * @return env */ public String getEnv() { return this.env; } /** * @return id */ public String getId() { return this.id; } /** * @return lastFinishTime */ public String getLastFinishTime() { return this.lastFinishTime; } /** * @return lastRunTime */ public String getLastRunTime() { return this.lastRunTime; } /** * @return lastUpdateTime */ public String getLastUpdateTime() { return this.lastUpdateTime; } /** * @return notifyUpdate */ public Integer getNotifyUpdate() { return this.notifyUpdate; } /** * @return ruleDetail */ public String getRuleDetail() { return this.ruleDetail; } /** * @return ruleExtend */ public String getRuleExtend() { return this.ruleExtend; } /** * @return ruleKeyword */ public String getRuleKeyword() { return this.ruleKeyword; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return ruleSource */ public String getRuleSource() { return this.ruleSource; } /** * @return ruleStatus */ public String getRuleStatus() { return this.ruleStatus; } /** * @return ruleType */ public Integer getRuleType() { return this.ruleType; } /** * @return startTime */ public String getStartTime() { return this.startTime; } /** * @return updateTime */ public String getUpdateTime() { return this.updateTime; } /** * @return userId */ public String getUserId() { return this.userId; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String createTime; private String endTime; private String env; private String id; private String lastFinishTime; private String lastRunTime; private String lastUpdateTime; private Integer notifyUpdate; private String ruleDetail; private String ruleExtend; private String ruleKeyword; private String ruleName; private String ruleSource; private String ruleStatus; private Integer ruleType; private String startTime; private String updateTime; private String userId; private Integer version; /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * EndTime. */ public Builder endTime(String endTime) { this.endTime = endTime; return this; } /** * Env. */ public Builder env(String env) { this.env = env; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * LastFinishTime. */ public Builder lastFinishTime(String lastFinishTime) { this.lastFinishTime = lastFinishTime; return this; } /** * LastRunTime. */ public Builder lastRunTime(String lastRunTime) { this.lastRunTime = lastRunTime; return this; } /** * LastUpdateTime. */ public Builder lastUpdateTime(String lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; return this; } /** * NotifyUpdate. */ public Builder notifyUpdate(Integer notifyUpdate) { this.notifyUpdate = notifyUpdate; return this; } /** * RuleDetail. */ public Builder ruleDetail(String ruleDetail) { this.ruleDetail = ruleDetail; return this; } /** * RuleExtend. */ public Builder ruleExtend(String ruleExtend) { this.ruleExtend = ruleExtend; return this; } /** * RuleKeyword. */ public Builder ruleKeyword(String ruleKeyword) { this.ruleKeyword = ruleKeyword; return this; } /** * RuleName. */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } /** * RuleSource. */ public Builder ruleSource(String ruleSource) { this.ruleSource = ruleSource; return this; } /** * RuleStatus. */ public Builder ruleStatus(String ruleStatus) { this.ruleStatus = ruleStatus; return this; } /** * RuleType. */ public Builder ruleType(Integer ruleType) { this.ruleType = ruleType; return this; } /** * StartTime. */ public Builder startTime(String startTime) { this.startTime = startTime; return this; } /** * UpdateTime. */ public Builder updateTime(String updateTime) { this.updateTime = updateTime; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } /** * Version. */ public Builder version(Integer version) { this.version = version; return this; } public TmMonitorRule build() { return new TmMonitorRule(this); } } } public static class Data extends TeaModel { @NameInMap("TmMonitorRule") private java.util.List < TmMonitorRule> tmMonitorRule; private Data(Builder builder) { this.tmMonitorRule = builder.tmMonitorRule; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return tmMonitorRule */ public java.util.List < TmMonitorRule> getTmMonitorRule() { return this.tmMonitorRule; } public static final class Builder { private java.util.List < TmMonitorRule> tmMonitorRule; /** * TmMonitorRule. */ public Builder tmMonitorRule(java.util.List < TmMonitorRule> tmMonitorRule) { this.tmMonitorRule = tmMonitorRule; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkOnSaleRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkOnSaleRequest} extends {@link RequestModel} * * <p>QueryTrademarkOnSaleRequest</p> */ public class QueryTrademarkOnSaleRequest extends Request { @Query @NameInMap("Classification") private String classification; @Query @NameInMap("PageNum") @Validation(required = true, maximum = 100, minimum = 1) private Integer pageNum; @Query @NameInMap("PageSize") @Validation(required = true, maximum = 1000, minimum = 50) private Integer pageSize; @Query @NameInMap("RegisterCode") private String registerCode; @Query @NameInMap("RegisterNumber") private String registerNumber; @Query @NameInMap("TmType") private String tmType; private QueryTrademarkOnSaleRequest(Builder builder) { super(builder); this.classification = builder.classification; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.registerCode = builder.registerCode; this.registerNumber = builder.registerNumber; this.tmType = builder.tmType; } public static Builder builder() { return new Builder(); } public static QueryTrademarkOnSaleRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return registerCode */ public String getRegisterCode() { return this.registerCode; } /** * @return registerNumber */ public String getRegisterNumber() { return this.registerNumber; } /** * @return tmType */ public String getTmType() { return this.tmType; } public static final class Builder extends Request.Builder<QueryTrademarkOnSaleRequest, Builder> { private String classification; private Integer pageNum; private Integer pageSize; private String registerCode; private String registerNumber; private String tmType; private Builder() { super(); } private Builder(QueryTrademarkOnSaleRequest request) { super(request); this.classification = request.classification; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.registerCode = request.registerCode; this.registerNumber = request.registerNumber; this.tmType = request.tmType; } /** * Classification. */ public Builder classification(String classification) { this.putQueryParameter("Classification", classification); this.classification = classification; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * RegisterCode. */ public Builder registerCode(String registerCode) { this.putQueryParameter("RegisterCode", registerCode); this.registerCode = registerCode; return this; } /** * RegisterNumber. */ public Builder registerNumber(String registerNumber) { this.putQueryParameter("RegisterNumber", registerNumber); this.registerNumber = registerNumber; return this; } /** * TmType. */ public Builder tmType(String tmType) { this.putQueryParameter("TmType", tmType); this.tmType = tmType; return this; } @Override public QueryTrademarkOnSaleRequest build() { return new QueryTrademarkOnSaleRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkOnSaleResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkOnSaleResponse} extends {@link TeaModel} * * <p>QueryTrademarkOnSaleResponse</p> */ public class QueryTrademarkOnSaleResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkOnSaleResponseBody body; private QueryTrademarkOnSaleResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkOnSaleResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkOnSaleResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkOnSaleResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkOnSaleResponseBody body); @Override QueryTrademarkOnSaleResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkOnSaleResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkOnSaleResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkOnSaleResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkOnSaleResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkOnSaleResponse build() { return new QueryTrademarkOnSaleResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkOnSaleResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkOnSaleResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkOnSaleResponseBody</p> */ public class QueryTrademarkOnSaleResponseBody extends TeaModel { @NameInMap("PageNumber") private Integer pageNumber; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; @NameInMap("TotalPageNumber") private Integer totalPageNumber; @NameInMap("Trademarks") private java.util.List < Trademarks> trademarks; private QueryTrademarkOnSaleResponseBody(Builder builder) { this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; this.totalPageNumber = builder.totalPageNumber; this.trademarks = builder.trademarks; } public static Builder builder() { return new Builder(); } public static QueryTrademarkOnSaleResponseBody create() { return builder().build(); } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } /** * @return totalPageNumber */ public Integer getTotalPageNumber() { return this.totalPageNumber; } /** * @return trademarks */ public java.util.List < Trademarks> getTrademarks() { return this.trademarks; } public static final class Builder { private Integer pageNumber; private Integer pageSize; private String requestId; private Integer totalCount; private Integer totalPageNumber; private java.util.List < Trademarks> trademarks; /** * PageNumber. */ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCount. */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * TotalPageNumber. */ public Builder totalPageNumber(Integer totalPageNumber) { this.totalPageNumber = totalPageNumber; return this; } /** * Trademarks. */ public Builder trademarks(java.util.List < Trademarks> trademarks) { this.trademarks = trademarks; return this; } public QueryTrademarkOnSaleResponseBody build() { return new QueryTrademarkOnSaleResponseBody(this); } } public static class Trademarks extends TeaModel { @NameInMap("AuditResult") private String auditResult; @NameInMap("Classification") private String classification; @NameInMap("Icon") private String icon; @NameInMap("OrderPrice") private String orderPrice; @NameInMap("RegistrationNumber") private String registrationNumber; @NameInMap("Status") private Long status; @NameInMap("TmType") private String tmType; @NameInMap("TrademarkName") private String trademarkName; private Trademarks(Builder builder) { this.auditResult = builder.auditResult; this.classification = builder.classification; this.icon = builder.icon; this.orderPrice = builder.orderPrice; this.registrationNumber = builder.registrationNumber; this.status = builder.status; this.tmType = builder.tmType; this.trademarkName = builder.trademarkName; } public static Builder builder() { return new Builder(); } public static Trademarks create() { return builder().build(); } /** * @return auditResult */ public String getAuditResult() { return this.auditResult; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return orderPrice */ public String getOrderPrice() { return this.orderPrice; } /** * @return registrationNumber */ public String getRegistrationNumber() { return this.registrationNumber; } /** * @return status */ public Long getStatus() { return this.status; } /** * @return tmType */ public String getTmType() { return this.tmType; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } public static final class Builder { private String auditResult; private String classification; private String icon; private String orderPrice; private String registrationNumber; private Long status; private String tmType; private String trademarkName; /** * AuditResult. */ public Builder auditResult(String auditResult) { this.auditResult = auditResult; return this; } /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * OrderPrice. */ public Builder orderPrice(String orderPrice) { this.orderPrice = orderPrice; return this; } /** * RegistrationNumber. */ public Builder registrationNumber(String registrationNumber) { this.registrationNumber = registrationNumber; return this; } /** * Status. */ public Builder status(Long status) { this.status = status; return this; } /** * TmType. */ public Builder tmType(String tmType) { this.tmType = tmType; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } public Trademarks build() { return new Trademarks(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkPriceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkPriceRequest} extends {@link RequestModel} * * <p>QueryTrademarkPriceRequest</p> */ public class QueryTrademarkPriceRequest extends Request { @Query @NameInMap("OrderData") @Validation(required = true) private java.util.Map < String, ? > orderData; @Query @NameInMap("TmIcon") private String tmIcon; @Query @NameInMap("TmName") private String tmName; @Query @NameInMap("Type") private Integer type; @Query @NameInMap("UserId") @Validation(required = true) private Long userId; private QueryTrademarkPriceRequest(Builder builder) { super(builder); this.orderData = builder.orderData; this.tmIcon = builder.tmIcon; this.tmName = builder.tmName; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static QueryTrademarkPriceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return orderData */ public java.util.Map < String, ? > getOrderData() { return this.orderData; } /** * @return tmIcon */ public String getTmIcon() { return this.tmIcon; } /** * @return tmName */ public String getTmName() { return this.tmName; } /** * @return type */ public Integer getType() { return this.type; } /** * @return userId */ public Long getUserId() { return this.userId; } public static final class Builder extends Request.Builder<QueryTrademarkPriceRequest, Builder> { private java.util.Map < String, ? > orderData; private String tmIcon; private String tmName; private Integer type; private Long userId; private Builder() { super(); } private Builder(QueryTrademarkPriceRequest request) { super(request); this.orderData = request.orderData; this.tmIcon = request.tmIcon; this.tmName = request.tmName; this.type = request.type; this.userId = request.userId; } /** * OrderData. */ public Builder orderData(java.util.Map < String, ? > orderData) { String orderDataShrink = shrink(orderData, "OrderData", "json"); this.putQueryParameter("OrderData", orderDataShrink); this.orderData = orderData; return this; } /** * TmIcon. */ public Builder tmIcon(String tmIcon) { this.putQueryParameter("TmIcon", tmIcon); this.tmIcon = tmIcon; return this; } /** * TmName. */ public Builder tmName(String tmName) { this.putQueryParameter("TmName", tmName); this.tmName = tmName; return this; } /** * Type. */ public Builder type(Integer type) { this.putQueryParameter("Type", type); this.type = type; return this; } /** * UserId. */ public Builder userId(Long userId) { this.putQueryParameter("UserId", userId); this.userId = userId; return this; } @Override public QueryTrademarkPriceRequest build() { return new QueryTrademarkPriceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkPriceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkPriceResponse} extends {@link TeaModel} * * <p>QueryTrademarkPriceResponse</p> */ public class QueryTrademarkPriceResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkPriceResponseBody body; private QueryTrademarkPriceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkPriceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkPriceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkPriceResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkPriceResponseBody body); @Override QueryTrademarkPriceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkPriceResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkPriceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkPriceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkPriceResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkPriceResponse build() { return new QueryTrademarkPriceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkPriceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkPriceResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkPriceResponseBody</p> */ public class QueryTrademarkPriceResponseBody extends TeaModel { @NameInMap("Currency") private String currency; @NameInMap("DiscountPrice") private Float discountPrice; @NameInMap("OriginalPrice") private Float originalPrice; @NameInMap("Prices") private Prices prices; @NameInMap("RequestId") private String requestId; @NameInMap("TradePrice") private Float tradePrice; private QueryTrademarkPriceResponseBody(Builder builder) { this.currency = builder.currency; this.discountPrice = builder.discountPrice; this.originalPrice = builder.originalPrice; this.prices = builder.prices; this.requestId = builder.requestId; this.tradePrice = builder.tradePrice; } public static Builder builder() { return new Builder(); } public static QueryTrademarkPriceResponseBody create() { return builder().build(); } /** * @return currency */ public String getCurrency() { return this.currency; } /** * @return discountPrice */ public Float getDiscountPrice() { return this.discountPrice; } /** * @return originalPrice */ public Float getOriginalPrice() { return this.originalPrice; } /** * @return prices */ public Prices getPrices() { return this.prices; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return tradePrice */ public Float getTradePrice() { return this.tradePrice; } public static final class Builder { private String currency; private Float discountPrice; private Float originalPrice; private Prices prices; private String requestId; private Float tradePrice; /** * Currency. */ public Builder currency(String currency) { this.currency = currency; return this; } /** * DiscountPrice. */ public Builder discountPrice(Float discountPrice) { this.discountPrice = discountPrice; return this; } /** * OriginalPrice. */ public Builder originalPrice(Float originalPrice) { this.originalPrice = originalPrice; return this; } /** * Prices. */ public Builder prices(Prices prices) { this.prices = prices; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TradePrice. */ public Builder tradePrice(Float tradePrice) { this.tradePrice = tradePrice; return this; } public QueryTrademarkPriceResponseBody build() { return new QueryTrademarkPriceResponseBody(this); } } public static class PricesPrices extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("Currency") private String currency; @NameInMap("DiscountPrice") private Float discountPrice; @NameInMap("OriginalPrice") private Float originalPrice; @NameInMap("TradePrice") private Float tradePrice; private PricesPrices(Builder builder) { this.classificationCode = builder.classificationCode; this.currency = builder.currency; this.discountPrice = builder.discountPrice; this.originalPrice = builder.originalPrice; this.tradePrice = builder.tradePrice; } public static Builder builder() { return new Builder(); } public static PricesPrices create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return currency */ public String getCurrency() { return this.currency; } /** * @return discountPrice */ public Float getDiscountPrice() { return this.discountPrice; } /** * @return originalPrice */ public Float getOriginalPrice() { return this.originalPrice; } /** * @return tradePrice */ public Float getTradePrice() { return this.tradePrice; } public static final class Builder { private String classificationCode; private String currency; private Float discountPrice; private Float originalPrice; private Float tradePrice; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * Currency. */ public Builder currency(String currency) { this.currency = currency; return this; } /** * DiscountPrice. */ public Builder discountPrice(Float discountPrice) { this.discountPrice = discountPrice; return this; } /** * OriginalPrice. */ public Builder originalPrice(Float originalPrice) { this.originalPrice = originalPrice; return this; } /** * TradePrice. */ public Builder tradePrice(Float tradePrice) { this.tradePrice = tradePrice; return this; } public PricesPrices build() { return new PricesPrices(this); } } } public static class Prices extends TeaModel { @NameInMap("Prices") private java.util.List < PricesPrices> prices; private Prices(Builder builder) { this.prices = builder.prices; } public static Builder builder() { return new Builder(); } public static Prices create() { return builder().build(); } /** * @return prices */ public java.util.List < PricesPrices> getPrices() { return this.prices; } public static final class Builder { private java.util.List < PricesPrices> prices; /** * Prices. */ public Builder prices(java.util.List < PricesPrices> prices) { this.prices = prices; return this; } public Prices build() { return new Prices(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkUploadAuditResultRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkUploadAuditResultRequest} extends {@link RequestModel} * * <p>QueryTrademarkUploadAuditResultRequest</p> */ public class QueryTrademarkUploadAuditResultRequest extends Request { @Query @NameInMap("Classification") private String classification; @Query @NameInMap("PageNum") @Validation(required = true, maximum = 100, minimum = 1) private Integer pageNum; @Query @NameInMap("PageSize") @Validation(required = true, maximum = 200, minimum = 1) private Integer pageSize; @Query @NameInMap("RegisterCode") private String registerCode; @Query @NameInMap("RegisterNumber") private String registerNumber; @Query @NameInMap("TmType") private String tmType; private QueryTrademarkUploadAuditResultRequest(Builder builder) { super(builder); this.classification = builder.classification; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.registerCode = builder.registerCode; this.registerNumber = builder.registerNumber; this.tmType = builder.tmType; } public static Builder builder() { return new Builder(); } public static QueryTrademarkUploadAuditResultRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return registerCode */ public String getRegisterCode() { return this.registerCode; } /** * @return registerNumber */ public String getRegisterNumber() { return this.registerNumber; } /** * @return tmType */ public String getTmType() { return this.tmType; } public static final class Builder extends Request.Builder<QueryTrademarkUploadAuditResultRequest, Builder> { private String classification; private Integer pageNum; private Integer pageSize; private String registerCode; private String registerNumber; private String tmType; private Builder() { super(); } private Builder(QueryTrademarkUploadAuditResultRequest request) { super(request); this.classification = request.classification; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.registerCode = request.registerCode; this.registerNumber = request.registerNumber; this.tmType = request.tmType; } /** * Classification. */ public Builder classification(String classification) { this.putQueryParameter("Classification", classification); this.classification = classification; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * RegisterCode. */ public Builder registerCode(String registerCode) { this.putQueryParameter("RegisterCode", registerCode); this.registerCode = registerCode; return this; } /** * RegisterNumber. */ public Builder registerNumber(String registerNumber) { this.putQueryParameter("RegisterNumber", registerNumber); this.registerNumber = registerNumber; return this; } /** * TmType. */ public Builder tmType(String tmType) { this.putQueryParameter("TmType", tmType); this.tmType = tmType; return this; } @Override public QueryTrademarkUploadAuditResultRequest build() { return new QueryTrademarkUploadAuditResultRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkUploadAuditResultResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkUploadAuditResultResponse} extends {@link TeaModel} * * <p>QueryTrademarkUploadAuditResultResponse</p> */ public class QueryTrademarkUploadAuditResultResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private QueryTrademarkUploadAuditResultResponseBody body; private QueryTrademarkUploadAuditResultResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryTrademarkUploadAuditResultResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryTrademarkUploadAuditResultResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryTrademarkUploadAuditResultResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryTrademarkUploadAuditResultResponseBody body); @Override QueryTrademarkUploadAuditResultResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryTrademarkUploadAuditResultResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryTrademarkUploadAuditResultResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryTrademarkUploadAuditResultResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryTrademarkUploadAuditResultResponseBody body) { this.body = body; return this; } @Override public QueryTrademarkUploadAuditResultResponse build() { return new QueryTrademarkUploadAuditResultResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/QueryTrademarkUploadAuditResultResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryTrademarkUploadAuditResultResponseBody} extends {@link TeaModel} * * <p>QueryTrademarkUploadAuditResultResponseBody</p> */ public class QueryTrademarkUploadAuditResultResponseBody extends TeaModel { @NameInMap("PageNumber") private Integer pageNumber; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; @NameInMap("TotalPageNumber") private Integer totalPageNumber; @NameInMap("Trademarks") private java.util.List < Trademarks> trademarks; private QueryTrademarkUploadAuditResultResponseBody(Builder builder) { this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; this.totalPageNumber = builder.totalPageNumber; this.trademarks = builder.trademarks; } public static Builder builder() { return new Builder(); } public static QueryTrademarkUploadAuditResultResponseBody create() { return builder().build(); } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } /** * @return totalPageNumber */ public Integer getTotalPageNumber() { return this.totalPageNumber; } /** * @return trademarks */ public java.util.List < Trademarks> getTrademarks() { return this.trademarks; } public static final class Builder { private Integer pageNumber; private Integer pageSize; private String requestId; private Integer totalCount; private Integer totalPageNumber; private java.util.List < Trademarks> trademarks; /** * PageNumber. */ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCount. */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * TotalPageNumber. */ public Builder totalPageNumber(Integer totalPageNumber) { this.totalPageNumber = totalPageNumber; return this; } /** * Trademarks. */ public Builder trademarks(java.util.List < Trademarks> trademarks) { this.trademarks = trademarks; return this; } public QueryTrademarkUploadAuditResultResponseBody build() { return new QueryTrademarkUploadAuditResultResponseBody(this); } } public static class Trademarks extends TeaModel { @NameInMap("AuditResult") private String auditResult; @NameInMap("Classification") private String classification; @NameInMap("Icon") private String icon; @NameInMap("OrderPrice") private String orderPrice; @NameInMap("RegistrationNumber") private String registrationNumber; @NameInMap("Status") private Long status; @NameInMap("TmType") private String tmType; @NameInMap("TrademarkName") private String trademarkName; private Trademarks(Builder builder) { this.auditResult = builder.auditResult; this.classification = builder.classification; this.icon = builder.icon; this.orderPrice = builder.orderPrice; this.registrationNumber = builder.registrationNumber; this.status = builder.status; this.tmType = builder.tmType; this.trademarkName = builder.trademarkName; } public static Builder builder() { return new Builder(); } public static Trademarks create() { return builder().build(); } /** * @return auditResult */ public String getAuditResult() { return this.auditResult; } /** * @return classification */ public String getClassification() { return this.classification; } /** * @return icon */ public String getIcon() { return this.icon; } /** * @return orderPrice */ public String getOrderPrice() { return this.orderPrice; } /** * @return registrationNumber */ public String getRegistrationNumber() { return this.registrationNumber; } /** * @return status */ public Long getStatus() { return this.status; } /** * @return tmType */ public String getTmType() { return this.tmType; } /** * @return trademarkName */ public String getTrademarkName() { return this.trademarkName; } public static final class Builder { private String auditResult; private String classification; private String icon; private String orderPrice; private String registrationNumber; private Long status; private String tmType; private String trademarkName; /** * AuditResult. */ public Builder auditResult(String auditResult) { this.auditResult = auditResult; return this; } /** * Classification. */ public Builder classification(String classification) { this.classification = classification; return this; } /** * Icon. */ public Builder icon(String icon) { this.icon = icon; return this; } /** * OrderPrice. */ public Builder orderPrice(String orderPrice) { this.orderPrice = orderPrice; return this; } /** * RegistrationNumber. */ public Builder registrationNumber(String registrationNumber) { this.registrationNumber = registrationNumber; return this; } /** * Status. */ public Builder status(Long status) { this.status = status; return this; } /** * TmType. */ public Builder tmType(String tmType) { this.tmType = tmType; return this; } /** * TrademarkName. */ public Builder trademarkName(String trademarkName) { this.trademarkName = trademarkName; return this; } public Trademarks build() { return new Trademarks(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RecordBankBalanceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RecordBankBalanceRequest} extends {@link RequestModel} * * <p>RecordBankBalanceRequest</p> */ public class RecordBankBalanceRequest extends Request { @Query @NameInMap("ActionDate") private Long actionDate; @Query @NameInMap("Balance") private String balance; @Query @NameInMap("PrincipalName") private String principalName; private RecordBankBalanceRequest(Builder builder) { super(builder); this.actionDate = builder.actionDate; this.balance = builder.balance; this.principalName = builder.principalName; } public static Builder builder() { return new Builder(); } public static RecordBankBalanceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return actionDate */ public Long getActionDate() { return this.actionDate; } /** * @return balance */ public String getBalance() { return this.balance; } /** * @return principalName */ public String getPrincipalName() { return this.principalName; } public static final class Builder extends Request.Builder<RecordBankBalanceRequest, Builder> { private Long actionDate; private String balance; private String principalName; private Builder() { super(); } private Builder(RecordBankBalanceRequest request) { super(request); this.actionDate = request.actionDate; this.balance = request.balance; this.principalName = request.principalName; } /** * ActionDate. */ public Builder actionDate(Long actionDate) { this.putQueryParameter("ActionDate", actionDate); this.actionDate = actionDate; return this; } /** * Balance. */ public Builder balance(String balance) { this.putQueryParameter("Balance", balance); this.balance = balance; return this; } /** * PrincipalName. */ public Builder principalName(String principalName) { this.putQueryParameter("PrincipalName", principalName); this.principalName = principalName; return this; } @Override public RecordBankBalanceRequest build() { return new RecordBankBalanceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RecordBankBalanceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RecordBankBalanceResponse} extends {@link TeaModel} * * <p>RecordBankBalanceResponse</p> */ public class RecordBankBalanceResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private RecordBankBalanceResponseBody body; private RecordBankBalanceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static RecordBankBalanceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public RecordBankBalanceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<RecordBankBalanceResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(RecordBankBalanceResponseBody body); @Override RecordBankBalanceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<RecordBankBalanceResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private RecordBankBalanceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(RecordBankBalanceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(RecordBankBalanceResponseBody body) { this.body = body; return this; } @Override public RecordBankBalanceResponse build() { return new RecordBankBalanceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RecordBankBalanceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RecordBankBalanceResponseBody} extends {@link TeaModel} * * <p>RecordBankBalanceResponseBody</p> */ public class RecordBankBalanceResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("Result") private Boolean result; private RecordBankBalanceResponseBody(Builder builder) { this.requestId = builder.requestId; this.result = builder.result; } public static Builder builder() { return new Builder(); } public static RecordBankBalanceResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return result */ public Boolean getResult() { return this.result; } public static final class Builder { private String requestId; private Boolean result; /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Result. */ public Builder result(Boolean result) { this.result = result; return this; } public RecordBankBalanceResponseBody build() { return new RecordBankBalanceResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefundProduceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefundProduceRequest} extends {@link RequestModel} * * <p>RefundProduceRequest</p> */ public class RefundProduceRequest extends Request { @Query @NameInMap("BizId") @Validation(required = true) private String bizId; @Query @NameInMap("RefundType") private String refundType; private RefundProduceRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.refundType = builder.refundType; } public static Builder builder() { return new Builder(); } public static RefundProduceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return refundType */ public String getRefundType() { return this.refundType; } public static final class Builder extends Request.Builder<RefundProduceRequest, Builder> { private String bizId; private String refundType; private Builder() { super(); } private Builder(RefundProduceRequest request) { super(request); this.bizId = request.bizId; this.refundType = request.refundType; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * RefundType. */ public Builder refundType(String refundType) { this.putQueryParameter("RefundType", refundType); this.refundType = refundType; return this; } @Override public RefundProduceRequest build() { return new RefundProduceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefundProduceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefundProduceResponse} extends {@link TeaModel} * * <p>RefundProduceResponse</p> */ public class RefundProduceResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private RefundProduceResponseBody body; private RefundProduceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static RefundProduceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public RefundProduceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<RefundProduceResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(RefundProduceResponseBody body); @Override RefundProduceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<RefundProduceResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private RefundProduceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(RefundProduceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(RefundProduceResponseBody body) { this.body = body; return this; } @Override public RefundProduceResponse build() { return new RefundProduceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefundProduceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefundProduceResponseBody} extends {@link TeaModel} * * <p>RefundProduceResponseBody</p> */ public class RefundProduceResponseBody extends TeaModel { @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMsg") private String errorMsg; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private RefundProduceResponseBody(Builder builder) { this.errorCode = builder.errorCode; this.errorMsg = builder.errorMsg; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static RefundProduceResponseBody create() { return builder().build(); } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMsg */ public String getErrorMsg() { return this.errorMsg; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String errorCode; private String errorMsg; private String requestId; private Boolean success; /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMsg. */ public Builder errorMsg(String errorMsg) { this.errorMsg = errorMsg; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public RefundProduceResponseBody build() { return new RefundProduceResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefuseAdditionalMaterialRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefuseAdditionalMaterialRequest} extends {@link RequestModel} * * <p>RefuseAdditionalMaterialRequest</p> */ public class RefuseAdditionalMaterialRequest extends Request { @Query @NameInMap("BizId") @Validation(required = true) private String bizId; @Query @NameInMap("Note") private String note; private RefuseAdditionalMaterialRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.note = builder.note; } public static Builder builder() { return new Builder(); } public static RefuseAdditionalMaterialRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return note */ public String getNote() { return this.note; } public static final class Builder extends Request.Builder<RefuseAdditionalMaterialRequest, Builder> { private String bizId; private String note; private Builder() { super(); } private Builder(RefuseAdditionalMaterialRequest request) { super(request); this.bizId = request.bizId; this.note = request.note; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * Note. */ public Builder note(String note) { this.putQueryParameter("Note", note); this.note = note; return this; } @Override public RefuseAdditionalMaterialRequest build() { return new RefuseAdditionalMaterialRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefuseAdditionalMaterialResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefuseAdditionalMaterialResponse} extends {@link TeaModel} * * <p>RefuseAdditionalMaterialResponse</p> */ public class RefuseAdditionalMaterialResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private RefuseAdditionalMaterialResponseBody body; private RefuseAdditionalMaterialResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static RefuseAdditionalMaterialResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public RefuseAdditionalMaterialResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<RefuseAdditionalMaterialResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(RefuseAdditionalMaterialResponseBody body); @Override RefuseAdditionalMaterialResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<RefuseAdditionalMaterialResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private RefuseAdditionalMaterialResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(RefuseAdditionalMaterialResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(RefuseAdditionalMaterialResponseBody body) { this.body = body; return this; } @Override public RefuseAdditionalMaterialResponse build() { return new RefuseAdditionalMaterialResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefuseAdditionalMaterialResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefuseAdditionalMaterialResponseBody} extends {@link TeaModel} * * <p>RefuseAdditionalMaterialResponseBody</p> */ public class RefuseAdditionalMaterialResponseBody extends TeaModel { @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMsg") private String errorMsg; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private RefuseAdditionalMaterialResponseBody(Builder builder) { this.errorCode = builder.errorCode; this.errorMsg = builder.errorMsg; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static RefuseAdditionalMaterialResponseBody create() { return builder().build(); } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMsg */ public String getErrorMsg() { return this.errorMsg; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String errorCode; private String errorMsg; private String requestId; private Boolean success; /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMsg. */ public Builder errorMsg(String errorMsg) { this.errorMsg = errorMsg; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public RefuseAdditionalMaterialResponseBody build() { return new RefuseAdditionalMaterialResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefuseApplicantRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefuseApplicantRequest} extends {@link RequestModel} * * <p>RefuseApplicantRequest</p> */ public class RefuseApplicantRequest extends Request { @Query @NameInMap("BizId") @Validation(required = true) private String bizId; @Query @NameInMap("Note") private String note; private RefuseApplicantRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.note = builder.note; } public static Builder builder() { return new Builder(); } public static RefuseApplicantRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return note */ public String getNote() { return this.note; } public static final class Builder extends Request.Builder<RefuseApplicantRequest, Builder> { private String bizId; private String note; private Builder() { super(); } private Builder(RefuseApplicantRequest request) { super(request); this.bizId = request.bizId; this.note = request.note; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * Note. */ public Builder note(String note) { this.putQueryParameter("Note", note); this.note = note; return this; } @Override public RefuseApplicantRequest build() { return new RefuseApplicantRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefuseApplicantResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefuseApplicantResponse} extends {@link TeaModel} * * <p>RefuseApplicantResponse</p> */ public class RefuseApplicantResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private RefuseApplicantResponseBody body; private RefuseApplicantResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static RefuseApplicantResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public RefuseApplicantResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<RefuseApplicantResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(RefuseApplicantResponseBody body); @Override RefuseApplicantResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<RefuseApplicantResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private RefuseApplicantResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(RefuseApplicantResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(RefuseApplicantResponseBody body) { this.body = body; return this; } @Override public RefuseApplicantResponse build() { return new RefuseApplicantResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RefuseApplicantResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RefuseApplicantResponseBody} extends {@link TeaModel} * * <p>RefuseApplicantResponseBody</p> */ public class RefuseApplicantResponseBody extends TeaModel { @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMsg") private String errorMsg; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private RefuseApplicantResponseBody(Builder builder) { this.errorCode = builder.errorCode; this.errorMsg = builder.errorMsg; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static RefuseApplicantResponseBody create() { return builder().build(); } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMsg */ public String getErrorMsg() { return this.errorMsg; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String errorCode; private String errorMsg; private String requestId; private Boolean success; /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMsg. */ public Builder errorMsg(String errorMsg) { this.errorMsg = errorMsg; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public RefuseApplicantResponseBody build() { return new RefuseApplicantResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RejectApplicantRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RejectApplicantRequest} extends {@link RequestModel} * * <p>RejectApplicantRequest</p> */ public class RejectApplicantRequest extends Request { @Query @NameInMap("InstanceId") @Validation(required = true) private String instanceId; @Query @NameInMap("Note") private String note; private RejectApplicantRequest(Builder builder) { super(builder); this.instanceId = builder.instanceId; this.note = builder.note; } public static Builder builder() { return new Builder(); } public static RejectApplicantRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return note */ public String getNote() { return this.note; } public static final class Builder extends Request.Builder<RejectApplicantRequest, Builder> { private String instanceId; private String note; private Builder() { super(); } private Builder(RejectApplicantRequest request) { super(request); this.instanceId = request.instanceId; this.note = request.note; } /** * InstanceId. */ public Builder instanceId(String instanceId) { this.putQueryParameter("InstanceId", instanceId); this.instanceId = instanceId; return this; } /** * Note. */ public Builder note(String note) { this.putQueryParameter("Note", note); this.note = note; return this; } @Override public RejectApplicantRequest build() { return new RejectApplicantRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RejectApplicantResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RejectApplicantResponse} extends {@link TeaModel} * * <p>RejectApplicantResponse</p> */ public class RejectApplicantResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private RejectApplicantResponseBody body; private RejectApplicantResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static RejectApplicantResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public RejectApplicantResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<RejectApplicantResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(RejectApplicantResponseBody body); @Override RejectApplicantResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<RejectApplicantResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private RejectApplicantResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(RejectApplicantResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(RejectApplicantResponseBody body) { this.body = body; return this; } @Override public RejectApplicantResponse build() { return new RejectApplicantResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/RejectApplicantResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link RejectApplicantResponseBody} extends {@link TeaModel} * * <p>RejectApplicantResponseBody</p> */ public class RejectApplicantResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; private RejectApplicantResponseBody(Builder builder) { this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static RejectApplicantResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String requestId; /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public RejectApplicantResponseBody build() { return new RejectApplicantResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveClassificationConditionsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveClassificationConditionsRequest} extends {@link RequestModel} * * <p>SaveClassificationConditionsRequest</p> */ public class SaveClassificationConditionsRequest extends Request { @Query @NameInMap("BizId") private String bizId; @Query @NameInMap("Condition") private String condition; @Query @NameInMap("Type") @Validation(required = true, maximum = 1000, minimum = 1) private Integer type; private SaveClassificationConditionsRequest(Builder builder) { super(builder); this.bizId = builder.bizId; this.condition = builder.condition; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static SaveClassificationConditionsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizId */ public String getBizId() { return this.bizId; } /** * @return condition */ public String getCondition() { return this.condition; } /** * @return type */ public Integer getType() { return this.type; } public static final class Builder extends Request.Builder<SaveClassificationConditionsRequest, Builder> { private String bizId; private String condition; private Integer type; private Builder() { super(); } private Builder(SaveClassificationConditionsRequest request) { super(request); this.bizId = request.bizId; this.condition = request.condition; this.type = request.type; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } /** * Condition. */ public Builder condition(String condition) { this.putQueryParameter("Condition", condition); this.condition = condition; return this; } /** * Type. */ public Builder type(Integer type) { this.putQueryParameter("Type", type); this.type = type; return this; } @Override public SaveClassificationConditionsRequest build() { return new SaveClassificationConditionsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveClassificationConditionsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveClassificationConditionsResponse} extends {@link TeaModel} * * <p>SaveClassificationConditionsResponse</p> */ public class SaveClassificationConditionsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private SaveClassificationConditionsResponseBody body; private SaveClassificationConditionsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static SaveClassificationConditionsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public SaveClassificationConditionsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<SaveClassificationConditionsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(SaveClassificationConditionsResponseBody body); @Override SaveClassificationConditionsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<SaveClassificationConditionsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private SaveClassificationConditionsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(SaveClassificationConditionsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(SaveClassificationConditionsResponseBody body) { this.body = body; return this; } @Override public SaveClassificationConditionsResponse build() { return new SaveClassificationConditionsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveClassificationConditionsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveClassificationConditionsResponseBody} extends {@link TeaModel} * * <p>SaveClassificationConditionsResponseBody</p> */ public class SaveClassificationConditionsResponseBody extends TeaModel { @NameInMap("ErrorMsg") private String errorMsg; @NameInMap("InvalidList") private java.util.List < InvalidList> invalidList; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; @NameInMap("TagName") private String tagName; private SaveClassificationConditionsResponseBody(Builder builder) { this.errorMsg = builder.errorMsg; this.invalidList = builder.invalidList; this.requestId = builder.requestId; this.success = builder.success; this.tagName = builder.tagName; } public static Builder builder() { return new Builder(); } public static SaveClassificationConditionsResponseBody create() { return builder().build(); } /** * @return errorMsg */ public String getErrorMsg() { return this.errorMsg; } /** * @return invalidList */ public java.util.List < InvalidList> getInvalidList() { return this.invalidList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return tagName */ public String getTagName() { return this.tagName; } public static final class Builder { private String errorMsg; private java.util.List < InvalidList> invalidList; private String requestId; private Boolean success; private String tagName; /** * ErrorMsg. */ public Builder errorMsg(String errorMsg) { this.errorMsg = errorMsg; return this; } /** * InvalidList. */ public Builder invalidList(java.util.List < InvalidList> invalidList) { this.invalidList = invalidList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * TagName. */ public Builder tagName(String tagName) { this.tagName = tagName; return this; } public SaveClassificationConditionsResponseBody build() { return new SaveClassificationConditionsResponseBody(this); } } public static class InvalidList extends TeaModel { @NameInMap("ClassificationCode") private String classificationCode; @NameInMap("ClassificationName") private String classificationName; @NameInMap("OfficialCode") private String officialCode; @NameInMap("ParentCode") private String parentCode; private InvalidList(Builder builder) { this.classificationCode = builder.classificationCode; this.classificationName = builder.classificationName; this.officialCode = builder.officialCode; this.parentCode = builder.parentCode; } public static Builder builder() { return new Builder(); } public static InvalidList create() { return builder().build(); } /** * @return classificationCode */ public String getClassificationCode() { return this.classificationCode; } /** * @return classificationName */ public String getClassificationName() { return this.classificationName; } /** * @return officialCode */ public String getOfficialCode() { return this.officialCode; } /** * @return parentCode */ public String getParentCode() { return this.parentCode; } public static final class Builder { private String classificationCode; private String classificationName; private String officialCode; private String parentCode; /** * ClassificationCode. */ public Builder classificationCode(String classificationCode) { this.classificationCode = classificationCode; return this; } /** * ClassificationName. */ public Builder classificationName(String classificationName) { this.classificationName = classificationName; return this; } /** * OfficialCode. */ public Builder officialCode(String officialCode) { this.officialCode = officialCode; return this; } /** * ParentCode. */ public Builder parentCode(String parentCode) { this.parentCode = parentCode; return this; } public InvalidList build() { return new InvalidList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveExtensionAttributeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveExtensionAttributeRequest} extends {@link RequestModel} * * <p>SaveExtensionAttributeRequest</p> */ public class SaveExtensionAttributeRequest extends Request { @Query @NameInMap("AttributeKey") private String attributeKey; @Query @NameInMap("AttributeValue") private String attributeValue; @Query @NameInMap("BizId") @Validation(required = true) private String bizId; private SaveExtensionAttributeRequest(Builder builder) { super(builder); this.attributeKey = builder.attributeKey; this.attributeValue = builder.attributeValue; this.bizId = builder.bizId; } public static Builder builder() { return new Builder(); } public static SaveExtensionAttributeRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return attributeKey */ public String getAttributeKey() { return this.attributeKey; } /** * @return attributeValue */ public String getAttributeValue() { return this.attributeValue; } /** * @return bizId */ public String getBizId() { return this.bizId; } public static final class Builder extends Request.Builder<SaveExtensionAttributeRequest, Builder> { private String attributeKey; private String attributeValue; private String bizId; private Builder() { super(); } private Builder(SaveExtensionAttributeRequest request) { super(request); this.attributeKey = request.attributeKey; this.attributeValue = request.attributeValue; this.bizId = request.bizId; } /** * AttributeKey. */ public Builder attributeKey(String attributeKey) { this.putQueryParameter("AttributeKey", attributeKey); this.attributeKey = attributeKey; return this; } /** * AttributeValue. */ public Builder attributeValue(String attributeValue) { this.putQueryParameter("AttributeValue", attributeValue); this.attributeValue = attributeValue; return this; } /** * BizId. */ public Builder bizId(String bizId) { this.putQueryParameter("BizId", bizId); this.bizId = bizId; return this; } @Override public SaveExtensionAttributeRequest build() { return new SaveExtensionAttributeRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveExtensionAttributeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveExtensionAttributeResponse} extends {@link TeaModel} * * <p>SaveExtensionAttributeResponse</p> */ public class SaveExtensionAttributeResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private SaveExtensionAttributeResponseBody body; private SaveExtensionAttributeResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static SaveExtensionAttributeResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public SaveExtensionAttributeResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<SaveExtensionAttributeResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(SaveExtensionAttributeResponseBody body); @Override SaveExtensionAttributeResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<SaveExtensionAttributeResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private SaveExtensionAttributeResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(SaveExtensionAttributeResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(SaveExtensionAttributeResponseBody body) { this.body = body; return this; } @Override public SaveExtensionAttributeResponse build() { return new SaveExtensionAttributeResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveExtensionAttributeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveExtensionAttributeResponseBody} extends {@link TeaModel} * * <p>SaveExtensionAttributeResponseBody</p> */ public class SaveExtensionAttributeResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private SaveExtensionAttributeResponseBody(Builder builder) { this.code = builder.code; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static SaveExtensionAttributeResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public SaveExtensionAttributeResponseBody build() { return new SaveExtensionAttributeResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveTaskForOfficialFileCustomRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveTaskForOfficialFileCustomRequest} extends {@link RequestModel} * * <p>SaveTaskForOfficialFileCustomRequest</p> */ public class SaveTaskForOfficialFileCustomRequest extends Request { @Query @NameInMap("EndAcceptTime") private Long endAcceptTime; @Query @NameInMap("StartAcceptTime") private Long startAcceptTime; private SaveTaskForOfficialFileCustomRequest(Builder builder) { super(builder); this.endAcceptTime = builder.endAcceptTime; this.startAcceptTime = builder.startAcceptTime; } public static Builder builder() { return new Builder(); } public static SaveTaskForOfficialFileCustomRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return endAcceptTime */ public Long getEndAcceptTime() { return this.endAcceptTime; } /** * @return startAcceptTime */ public Long getStartAcceptTime() { return this.startAcceptTime; } public static final class Builder extends Request.Builder<SaveTaskForOfficialFileCustomRequest, Builder> { private Long endAcceptTime; private Long startAcceptTime; private Builder() { super(); } private Builder(SaveTaskForOfficialFileCustomRequest request) { super(request); this.endAcceptTime = request.endAcceptTime; this.startAcceptTime = request.startAcceptTime; } /** * EndAcceptTime. */ public Builder endAcceptTime(Long endAcceptTime) { this.putQueryParameter("EndAcceptTime", endAcceptTime); this.endAcceptTime = endAcceptTime; return this; } /** * StartAcceptTime. */ public Builder startAcceptTime(Long startAcceptTime) { this.putQueryParameter("StartAcceptTime", startAcceptTime); this.startAcceptTime = startAcceptTime; return this; } @Override public SaveTaskForOfficialFileCustomRequest build() { return new SaveTaskForOfficialFileCustomRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveTaskForOfficialFileCustomResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveTaskForOfficialFileCustomResponse} extends {@link TeaModel} * * <p>SaveTaskForOfficialFileCustomResponse</p> */ public class SaveTaskForOfficialFileCustomResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private SaveTaskForOfficialFileCustomResponseBody body; private SaveTaskForOfficialFileCustomResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static SaveTaskForOfficialFileCustomResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public SaveTaskForOfficialFileCustomResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<SaveTaskForOfficialFileCustomResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(SaveTaskForOfficialFileCustomResponseBody body); @Override SaveTaskForOfficialFileCustomResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<SaveTaskForOfficialFileCustomResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private SaveTaskForOfficialFileCustomResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(SaveTaskForOfficialFileCustomResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(SaveTaskForOfficialFileCustomResponseBody body) { this.body = body; return this; } @Override public SaveTaskForOfficialFileCustomResponse build() { return new SaveTaskForOfficialFileCustomResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveTaskForOfficialFileCustomResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveTaskForOfficialFileCustomResponseBody} extends {@link TeaModel} * * <p>SaveTaskForOfficialFileCustomResponseBody</p> */ public class SaveTaskForOfficialFileCustomResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private SaveTaskForOfficialFileCustomResponseBody(Builder builder) { this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static SaveTaskForOfficialFileCustomResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String requestId; private Boolean success; /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public SaveTaskForOfficialFileCustomResponseBody build() { return new SaveTaskForOfficialFileCustomResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveTaskRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveTaskRequest} extends {@link RequestModel} * * <p>SaveTaskRequest</p> */ public class SaveTaskRequest extends Request { @Query @NameInMap("BizType") @Validation(required = true) private String bizType; @Query @NameInMap("Request") @Validation(required = true) private String request; private SaveTaskRequest(Builder builder) { super(builder); this.bizType = builder.bizType; this.request = builder.request; } public static Builder builder() { return new Builder(); } public static SaveTaskRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizType */ public String getBizType() { return this.bizType; } /** * @return request */ public String getRequest() { return this.request; } public static final class Builder extends Request.Builder<SaveTaskRequest, Builder> { private String bizType; private String request; private Builder() { super(); } private Builder(SaveTaskRequest request) { super(request); this.bizType = request.bizType; this.request = request.request; } /** * BizType. */ public Builder bizType(String bizType) { this.putQueryParameter("BizType", bizType); this.bizType = bizType; return this; } /** * Request. */ public Builder request(String request) { this.putQueryParameter("Request", request); this.request = request; return this; } @Override public SaveTaskRequest build() { return new SaveTaskRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724
java-sources/com/aliyun/alibabacloud-trademark20180724/1.0.0/com/aliyun/sdk/service/trademark20180724/models/SaveTaskResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.trademark20180724.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link SaveTaskResponse} extends {@link TeaModel} * * <p>SaveTaskResponse</p> */ public class SaveTaskResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("statusCode") @Validation(required = true) private Integer statusCode; @NameInMap("body") @Validation(required = true) private SaveTaskResponseBody body; private SaveTaskResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static SaveTaskResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public SaveTaskResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<SaveTaskResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(SaveTaskResponseBody body); @Override SaveTaskResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<SaveTaskResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private SaveTaskResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(SaveTaskResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(SaveTaskResponseBody body) { this.body = body; return this; } @Override public SaveTaskResponse build() { return new SaveTaskResponse(this); } } }