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/FilterUnavailableCodesRequest.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 FilterUnavailableCodesRequest} extends {@link RequestModel}
*
* <p>FilterUnavailableCodesRequest</p>
*/
public class FilterUnavailableCodesRequest extends Request {
@Query
@NameInMap("Codes")
private java.util.Map < String, ? > codes;
private FilterUnavailableCodesRequest(Builder builder) {
super(builder);
this.codes = builder.codes;
}
public static Builder builder() {
return new Builder();
}
public static FilterUnavailableCodesRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return codes
*/
public java.util.Map < String, ? > getCodes() {
return this.codes;
}
public static final class Builder extends Request.Builder<FilterUnavailableCodesRequest, Builder> {
private java.util.Map < String, ? > codes;
private Builder() {
super();
}
private Builder(FilterUnavailableCodesRequest request) {
super(request);
this.codes = request.codes;
}
/**
* Codes.
*/
public Builder codes(java.util.Map < String, ? > codes) {
String codesShrink = shrink(codes, "Codes", "json");
this.putQueryParameter("Codes", codesShrink);
this.codes = codes;
return this;
}
@Override
public FilterUnavailableCodesRequest build() {
return new FilterUnavailableCodesRequest(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/FilterUnavailableCodesResponse.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 FilterUnavailableCodesResponse} extends {@link TeaModel}
*
* <p>FilterUnavailableCodesResponse</p>
*/
public class FilterUnavailableCodesResponse 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 FilterUnavailableCodesResponseBody body;
private FilterUnavailableCodesResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static FilterUnavailableCodesResponse 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 FilterUnavailableCodesResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<FilterUnavailableCodesResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(FilterUnavailableCodesResponseBody body);
@Override
FilterUnavailableCodesResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<FilterUnavailableCodesResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private FilterUnavailableCodesResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(FilterUnavailableCodesResponse 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(FilterUnavailableCodesResponseBody body) {
this.body = body;
return this;
}
@Override
public FilterUnavailableCodesResponse build() {
return new FilterUnavailableCodesResponse(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/FilterUnavailableCodesResponseBody.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 FilterUnavailableCodesResponseBody} extends {@link TeaModel}
*
* <p>FilterUnavailableCodesResponseBody</p>
*/
public class FilterUnavailableCodesResponseBody extends TeaModel {
@NameInMap("Data")
private Data data;
@NameInMap("RequestId")
private String requestId;
private FilterUnavailableCodesResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static FilterUnavailableCodesResponseBody 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 FilterUnavailableCodesResponseBody build() {
return new FilterUnavailableCodesResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("Codes")
private java.util.List < String > codes;
private Data(Builder builder) {
this.codes = builder.codes;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return codes
*/
public java.util.List < String > getCodes() {
return this.codes;
}
public static final class Builder {
private java.util.List < String > codes;
/**
* Codes.
*/
public Builder codes(java.util.List < String > codes) {
this.codes = codes;
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/ForceUploadTrademarkOnsaleRequest.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 ForceUploadTrademarkOnsaleRequest} extends {@link RequestModel}
*
* <p>ForceUploadTrademarkOnsaleRequest</p>
*/
public class ForceUploadTrademarkOnsaleRequest extends Request {
@Query
@NameInMap("BeginTime")
@Validation(required = true)
private Long beginTime;
@Query
@NameInMap("ClassificationCode")
@Validation(required = true)
private String classificationCode;
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("EndTime")
@Validation(required = true)
private Long endTime;
@Query
@NameInMap("Label")
private String label;
@Query
@NameInMap("OriginalPrice")
@Validation(required = true)
private Float originalPrice;
@Query
@NameInMap("OwnerEnName")
private String ownerEnName;
@Query
@NameInMap("OwnerName")
@Validation(required = true)
private String ownerName;
@Query
@NameInMap("Reason")
private String reason;
@Query
@NameInMap("RegAnnDate")
@Validation()
private Long regAnnDate;
@Query
@NameInMap("SecondaryClassification")
@Validation(required = true)
private String secondaryClassification;
@Query
@NameInMap("ThirdClassification")
@Validation(required = true)
private String thirdClassification;
@Query
@NameInMap("TmIcon")
@Validation(required = true)
private String tmIcon;
@Query
@NameInMap("TmName")
@Validation(required = true)
private String tmName;
@Query
@NameInMap("TmNumber")
@Validation(required = true)
private String tmNumber;
@Query
@NameInMap("Type")
private String type;
private ForceUploadTrademarkOnsaleRequest(Builder builder) {
super(builder);
this.beginTime = builder.beginTime;
this.classificationCode = builder.classificationCode;
this.description = builder.description;
this.endTime = builder.endTime;
this.label = builder.label;
this.originalPrice = builder.originalPrice;
this.ownerEnName = builder.ownerEnName;
this.ownerName = builder.ownerName;
this.reason = builder.reason;
this.regAnnDate = builder.regAnnDate;
this.secondaryClassification = builder.secondaryClassification;
this.thirdClassification = builder.thirdClassification;
this.tmIcon = builder.tmIcon;
this.tmName = builder.tmName;
this.tmNumber = builder.tmNumber;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static ForceUploadTrademarkOnsaleRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return beginTime
*/
public Long getBeginTime() {
return this.beginTime;
}
/**
* @return classificationCode
*/
public String getClassificationCode() {
return this.classificationCode;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return label
*/
public String getLabel() {
return this.label;
}
/**
* @return originalPrice
*/
public Float getOriginalPrice() {
return this.originalPrice;
}
/**
* @return ownerEnName
*/
public String getOwnerEnName() {
return this.ownerEnName;
}
/**
* @return ownerName
*/
public String getOwnerName() {
return this.ownerName;
}
/**
* @return reason
*/
public String getReason() {
return this.reason;
}
/**
* @return regAnnDate
*/
public Long getRegAnnDate() {
return this.regAnnDate;
}
/**
* @return secondaryClassification
*/
public String getSecondaryClassification() {
return this.secondaryClassification;
}
/**
* @return thirdClassification
*/
public String 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 type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<ForceUploadTrademarkOnsaleRequest, Builder> {
private Long beginTime;
private String classificationCode;
private String description;
private Long endTime;
private String label;
private Float originalPrice;
private String ownerEnName;
private String ownerName;
private String reason;
private Long regAnnDate;
private String secondaryClassification;
private String thirdClassification;
private String tmIcon;
private String tmName;
private String tmNumber;
private String type;
private Builder() {
super();
}
private Builder(ForceUploadTrademarkOnsaleRequest request) {
super(request);
this.beginTime = request.beginTime;
this.classificationCode = request.classificationCode;
this.description = request.description;
this.endTime = request.endTime;
this.label = request.label;
this.originalPrice = request.originalPrice;
this.ownerEnName = request.ownerEnName;
this.ownerName = request.ownerName;
this.reason = request.reason;
this.regAnnDate = request.regAnnDate;
this.secondaryClassification = request.secondaryClassification;
this.thirdClassification = request.thirdClassification;
this.tmIcon = request.tmIcon;
this.tmName = request.tmName;
this.tmNumber = request.tmNumber;
this.type = request.type;
}
/**
* BeginTime.
*/
public Builder beginTime(Long beginTime) {
this.putQueryParameter("BeginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* ClassificationCode.
*/
public Builder classificationCode(String classificationCode) {
this.putQueryParameter("ClassificationCode", classificationCode);
this.classificationCode = classificationCode;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.putQueryParameter("Description", description);
this.description = description;
return this;
}
/**
* EndTime.
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* Label.
*/
public Builder label(String label) {
this.putQueryParameter("Label", label);
this.label = label;
return this;
}
/**
* OriginalPrice.
*/
public Builder originalPrice(Float originalPrice) {
this.putQueryParameter("OriginalPrice", originalPrice);
this.originalPrice = originalPrice;
return this;
}
/**
* OwnerEnName.
*/
public Builder ownerEnName(String ownerEnName) {
this.putQueryParameter("OwnerEnName", ownerEnName);
this.ownerEnName = ownerEnName;
return this;
}
/**
* OwnerName.
*/
public Builder ownerName(String ownerName) {
this.putQueryParameter("OwnerName", ownerName);
this.ownerName = ownerName;
return this;
}
/**
* Reason.
*/
public Builder reason(String reason) {
this.putQueryParameter("Reason", reason);
this.reason = reason;
return this;
}
/**
* RegAnnDate.
*/
public Builder regAnnDate(Long regAnnDate) {
this.putQueryParameter("RegAnnDate", regAnnDate);
this.regAnnDate = regAnnDate;
return this;
}
/**
* SecondaryClassification.
*/
public Builder secondaryClassification(String secondaryClassification) {
this.putQueryParameter("SecondaryClassification", secondaryClassification);
this.secondaryClassification = secondaryClassification;
return this;
}
/**
* ThirdClassification.
*/
public Builder thirdClassification(String thirdClassification) {
this.putQueryParameter("ThirdClassification", thirdClassification);
this.thirdClassification = thirdClassification;
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;
}
/**
* 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 ForceUploadTrademarkOnsaleRequest build() {
return new ForceUploadTrademarkOnsaleRequest(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/ForceUploadTrademarkOnsaleResponse.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 ForceUploadTrademarkOnsaleResponse} extends {@link TeaModel}
*
* <p>ForceUploadTrademarkOnsaleResponse</p>
*/
public class ForceUploadTrademarkOnsaleResponse 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 ForceUploadTrademarkOnsaleResponseBody body;
private ForceUploadTrademarkOnsaleResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ForceUploadTrademarkOnsaleResponse 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 ForceUploadTrademarkOnsaleResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ForceUploadTrademarkOnsaleResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ForceUploadTrademarkOnsaleResponseBody body);
@Override
ForceUploadTrademarkOnsaleResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ForceUploadTrademarkOnsaleResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ForceUploadTrademarkOnsaleResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ForceUploadTrademarkOnsaleResponse 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(ForceUploadTrademarkOnsaleResponseBody body) {
this.body = body;
return this;
}
@Override
public ForceUploadTrademarkOnsaleResponse build() {
return new ForceUploadTrademarkOnsaleResponse(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/ForceUploadTrademarkOnsaleResponseBody.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 ForceUploadTrademarkOnsaleResponseBody} extends {@link TeaModel}
*
* <p>ForceUploadTrademarkOnsaleResponseBody</p>
*/
public class ForceUploadTrademarkOnsaleResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private ForceUploadTrademarkOnsaleResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ForceUploadTrademarkOnsaleResponseBody 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 ForceUploadTrademarkOnsaleResponseBody build() {
return new ForceUploadTrademarkOnsaleResponseBody(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/GenerateQrCodeRequest.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 GenerateQrCodeRequest} extends {@link RequestModel}
*
* <p>GenerateQrCodeRequest</p>
*/
public class GenerateQrCodeRequest extends Request {
@Query
@NameInMap("FieldKey")
private String fieldKey;
@Query
@NameInMap("OssKey")
private String ossKey;
@Query
@NameInMap("Uuid")
private String uuid;
private GenerateQrCodeRequest(Builder builder) {
super(builder);
this.fieldKey = builder.fieldKey;
this.ossKey = builder.ossKey;
this.uuid = builder.uuid;
}
public static Builder builder() {
return new Builder();
}
public static GenerateQrCodeRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return fieldKey
*/
public String getFieldKey() {
return this.fieldKey;
}
/**
* @return ossKey
*/
public String getOssKey() {
return this.ossKey;
}
/**
* @return uuid
*/
public String getUuid() {
return this.uuid;
}
public static final class Builder extends Request.Builder<GenerateQrCodeRequest, Builder> {
private String fieldKey;
private String ossKey;
private String uuid;
private Builder() {
super();
}
private Builder(GenerateQrCodeRequest request) {
super(request);
this.fieldKey = request.fieldKey;
this.ossKey = request.ossKey;
this.uuid = request.uuid;
}
/**
* FieldKey.
*/
public Builder fieldKey(String fieldKey) {
this.putQueryParameter("FieldKey", fieldKey);
this.fieldKey = fieldKey;
return this;
}
/**
* OssKey.
*/
public Builder ossKey(String ossKey) {
this.putQueryParameter("OssKey", ossKey);
this.ossKey = ossKey;
return this;
}
/**
* Uuid.
*/
public Builder uuid(String uuid) {
this.putQueryParameter("Uuid", uuid);
this.uuid = uuid;
return this;
}
@Override
public GenerateQrCodeRequest build() {
return new GenerateQrCodeRequest(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/GenerateQrCodeResponse.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 GenerateQrCodeResponse} extends {@link TeaModel}
*
* <p>GenerateQrCodeResponse</p>
*/
public class GenerateQrCodeResponse 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 GenerateQrCodeResponseBody body;
private GenerateQrCodeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GenerateQrCodeResponse 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 GenerateQrCodeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GenerateQrCodeResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GenerateQrCodeResponseBody body);
@Override
GenerateQrCodeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GenerateQrCodeResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GenerateQrCodeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GenerateQrCodeResponse 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(GenerateQrCodeResponseBody body) {
this.body = body;
return this;
}
@Override
public GenerateQrCodeResponse build() {
return new GenerateQrCodeResponse(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/GenerateQrCodeResponseBody.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 GenerateQrCodeResponseBody} extends {@link TeaModel}
*
* <p>GenerateQrCodeResponseBody</p>
*/
public class GenerateQrCodeResponseBody extends TeaModel {
@NameInMap("ExpireTime")
private Long expireTime;
@NameInMap("FieldKey")
private String fieldKey;
@NameInMap("QrcodeUrl")
private String qrcodeUrl;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
@NameInMap("Uuid")
private String uuid;
private GenerateQrCodeResponseBody(Builder builder) {
this.expireTime = builder.expireTime;
this.fieldKey = builder.fieldKey;
this.qrcodeUrl = builder.qrcodeUrl;
this.requestId = builder.requestId;
this.success = builder.success;
this.uuid = builder.uuid;
}
public static Builder builder() {
return new Builder();
}
public static GenerateQrCodeResponseBody create() {
return builder().build();
}
/**
* @return expireTime
*/
public Long getExpireTime() {
return this.expireTime;
}
/**
* @return fieldKey
*/
public String getFieldKey() {
return this.fieldKey;
}
/**
* @return qrcodeUrl
*/
public String getQrcodeUrl() {
return this.qrcodeUrl;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @return uuid
*/
public String getUuid() {
return this.uuid;
}
public static final class Builder {
private Long expireTime;
private String fieldKey;
private String qrcodeUrl;
private String requestId;
private Boolean success;
private String uuid;
/**
* ExpireTime.
*/
public Builder expireTime(Long expireTime) {
this.expireTime = expireTime;
return this;
}
/**
* FieldKey.
*/
public Builder fieldKey(String fieldKey) {
this.fieldKey = fieldKey;
return this;
}
/**
* QrcodeUrl.
*/
public Builder qrcodeUrl(String qrcodeUrl) {
this.qrcodeUrl = qrcodeUrl;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
/**
* Uuid.
*/
public Builder uuid(String uuid) {
this.uuid = uuid;
return this;
}
public GenerateQrCodeResponseBody build() {
return new GenerateQrCodeResponseBody(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/GenerateUploadFilePolicyRequest.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 GenerateUploadFilePolicyRequest} extends {@link RequestModel}
*
* <p>GenerateUploadFilePolicyRequest</p>
*/
public class GenerateUploadFilePolicyRequest extends Request {
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("FileType")
@Validation(required = true)
private String fileType;
private GenerateUploadFilePolicyRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
this.fileType = builder.fileType;
}
public static Builder builder() {
return new Builder();
}
public static GenerateUploadFilePolicyRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return fileType
*/
public String getFileType() {
return this.fileType;
}
public static final class Builder extends Request.Builder<GenerateUploadFilePolicyRequest, Builder> {
private String bizId;
private String fileType;
private Builder() {
super();
}
private Builder(GenerateUploadFilePolicyRequest request) {
super(request);
this.bizId = request.bizId;
this.fileType = request.fileType;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* FileType.
*/
public Builder fileType(String fileType) {
this.putQueryParameter("FileType", fileType);
this.fileType = fileType;
return this;
}
@Override
public GenerateUploadFilePolicyRequest build() {
return new GenerateUploadFilePolicyRequest(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/GenerateUploadFilePolicyResponse.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 GenerateUploadFilePolicyResponse} extends {@link TeaModel}
*
* <p>GenerateUploadFilePolicyResponse</p>
*/
public class GenerateUploadFilePolicyResponse 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 GenerateUploadFilePolicyResponseBody body;
private GenerateUploadFilePolicyResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GenerateUploadFilePolicyResponse 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 GenerateUploadFilePolicyResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GenerateUploadFilePolicyResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GenerateUploadFilePolicyResponseBody body);
@Override
GenerateUploadFilePolicyResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GenerateUploadFilePolicyResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GenerateUploadFilePolicyResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GenerateUploadFilePolicyResponse 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(GenerateUploadFilePolicyResponseBody body) {
this.body = body;
return this;
}
@Override
public GenerateUploadFilePolicyResponse build() {
return new GenerateUploadFilePolicyResponse(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/GenerateUploadFilePolicyResponseBody.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 GenerateUploadFilePolicyResponseBody} extends {@link TeaModel}
*
* <p>GenerateUploadFilePolicyResponseBody</p>
*/
public class GenerateUploadFilePolicyResponseBody extends TeaModel {
@NameInMap("AccessId")
private String accessId;
@NameInMap("EncodedPolicy")
private String encodedPolicy;
@NameInMap("ExpireTime")
private Long expireTime;
@NameInMap("FileDir")
private String fileDir;
@NameInMap("Host")
private String host;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Signature")
private String signature;
private GenerateUploadFilePolicyResponseBody(Builder builder) {
this.accessId = builder.accessId;
this.encodedPolicy = builder.encodedPolicy;
this.expireTime = builder.expireTime;
this.fileDir = builder.fileDir;
this.host = builder.host;
this.requestId = builder.requestId;
this.signature = builder.signature;
}
public static Builder builder() {
return new Builder();
}
public static GenerateUploadFilePolicyResponseBody create() {
return builder().build();
}
/**
* @return accessId
*/
public String getAccessId() {
return this.accessId;
}
/**
* @return encodedPolicy
*/
public String getEncodedPolicy() {
return this.encodedPolicy;
}
/**
* @return expireTime
*/
public Long getExpireTime() {
return this.expireTime;
}
/**
* @return fileDir
*/
public String getFileDir() {
return this.fileDir;
}
/**
* @return host
*/
public String getHost() {
return this.host;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return signature
*/
public String getSignature() {
return this.signature;
}
public static final class Builder {
private String accessId;
private String encodedPolicy;
private Long expireTime;
private String fileDir;
private String host;
private String requestId;
private String signature;
/**
* accessId
*/
public Builder accessId(String accessId) {
this.accessId = accessId;
return this;
}
/**
* osspolicy
*/
public Builder encodedPolicy(String encodedPolicy) {
this.encodedPolicy = encodedPolicy;
return this;
}
/**
* ExpireTime.
*/
public Builder expireTime(Long expireTime) {
this.expireTime = expireTime;
return this;
}
/**
* FileDir.
*/
public Builder fileDir(String fileDir) {
this.fileDir = fileDir;
return this;
}
/**
* Host.
*/
public Builder host(String host) {
this.host = host;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Signature.
*/
public Builder signature(String signature) {
this.signature = signature;
return this;
}
public GenerateUploadFilePolicyResponseBody build() {
return new GenerateUploadFilePolicyResponseBody(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/GetAuthorizationLetterVersionRequest.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 GetAuthorizationLetterVersionRequest} extends {@link RequestModel}
*
* <p>GetAuthorizationLetterVersionRequest</p>
*/
public class GetAuthorizationLetterVersionRequest extends Request {
@Query
@NameInMap("OssKey")
@Validation(required = true)
private String ossKey;
private GetAuthorizationLetterVersionRequest(Builder builder) {
super(builder);
this.ossKey = builder.ossKey;
}
public static Builder builder() {
return new Builder();
}
public static GetAuthorizationLetterVersionRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return ossKey
*/
public String getOssKey() {
return this.ossKey;
}
public static final class Builder extends Request.Builder<GetAuthorizationLetterVersionRequest, Builder> {
private String ossKey;
private Builder() {
super();
}
private Builder(GetAuthorizationLetterVersionRequest request) {
super(request);
this.ossKey = request.ossKey;
}
/**
* OssKey.
*/
public Builder ossKey(String ossKey) {
this.putQueryParameter("OssKey", ossKey);
this.ossKey = ossKey;
return this;
}
@Override
public GetAuthorizationLetterVersionRequest build() {
return new GetAuthorizationLetterVersionRequest(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/GetAuthorizationLetterVersionResponse.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 GetAuthorizationLetterVersionResponse} extends {@link TeaModel}
*
* <p>GetAuthorizationLetterVersionResponse</p>
*/
public class GetAuthorizationLetterVersionResponse 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 GetAuthorizationLetterVersionResponseBody body;
private GetAuthorizationLetterVersionResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetAuthorizationLetterVersionResponse 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 GetAuthorizationLetterVersionResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetAuthorizationLetterVersionResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetAuthorizationLetterVersionResponseBody body);
@Override
GetAuthorizationLetterVersionResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetAuthorizationLetterVersionResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetAuthorizationLetterVersionResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetAuthorizationLetterVersionResponse 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(GetAuthorizationLetterVersionResponseBody body) {
this.body = body;
return this;
}
@Override
public GetAuthorizationLetterVersionResponse build() {
return new GetAuthorizationLetterVersionResponse(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/GetAuthorizationLetterVersionResponseBody.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 GetAuthorizationLetterVersionResponseBody} extends {@link TeaModel}
*
* <p>GetAuthorizationLetterVersionResponseBody</p>
*/
public class GetAuthorizationLetterVersionResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("Version")
private String version;
private GetAuthorizationLetterVersionResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static GetAuthorizationLetterVersionResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return version
*/
public String getVersion() {
return this.version;
}
public static final class Builder {
private String requestId;
private String version;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Version.
*/
public Builder version(String version) {
this.version = version;
return this;
}
public GetAuthorizationLetterVersionResponseBody build() {
return new GetAuthorizationLetterVersionResponseBody(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/GetDefaultPrincipalNameRequest.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 GetDefaultPrincipalNameRequest} extends {@link RequestModel}
*
* <p>GetDefaultPrincipalNameRequest</p>
*/
public class GetDefaultPrincipalNameRequest extends Request {
@Query
@NameInMap("BizType")
@Validation(required = true)
private String bizType;
private GetDefaultPrincipalNameRequest(Builder builder) {
super(builder);
this.bizType = builder.bizType;
}
public static Builder builder() {
return new Builder();
}
public static GetDefaultPrincipalNameRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
public static final class Builder extends Request.Builder<GetDefaultPrincipalNameRequest, Builder> {
private String bizType;
private Builder() {
super();
}
private Builder(GetDefaultPrincipalNameRequest request) {
super(request);
this.bizType = request.bizType;
}
/**
* BizType.
*/
public Builder bizType(String bizType) {
this.putQueryParameter("BizType", bizType);
this.bizType = bizType;
return this;
}
@Override
public GetDefaultPrincipalNameRequest build() {
return new GetDefaultPrincipalNameRequest(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/GetDefaultPrincipalNameResponse.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 GetDefaultPrincipalNameResponse} extends {@link TeaModel}
*
* <p>GetDefaultPrincipalNameResponse</p>
*/
public class GetDefaultPrincipalNameResponse 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 GetDefaultPrincipalNameResponseBody body;
private GetDefaultPrincipalNameResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetDefaultPrincipalNameResponse 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 GetDefaultPrincipalNameResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetDefaultPrincipalNameResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetDefaultPrincipalNameResponseBody body);
@Override
GetDefaultPrincipalNameResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetDefaultPrincipalNameResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetDefaultPrincipalNameResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetDefaultPrincipalNameResponse 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(GetDefaultPrincipalNameResponseBody body) {
this.body = body;
return this;
}
@Override
public GetDefaultPrincipalNameResponse build() {
return new GetDefaultPrincipalNameResponse(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/GetDefaultPrincipalNameResponseBody.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 GetDefaultPrincipalNameResponseBody} extends {@link TeaModel}
*
* <p>GetDefaultPrincipalNameResponseBody</p>
*/
public class GetDefaultPrincipalNameResponseBody extends TeaModel {
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("RequestId")
private String requestId;
private GetDefaultPrincipalNameResponseBody(Builder builder) {
this.principalName = builder.principalName;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetDefaultPrincipalNameResponseBody create() {
return builder().build();
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Integer principalName;
private String requestId;
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetDefaultPrincipalNameResponseBody build() {
return new GetDefaultPrincipalNameResponseBody(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/GetDefaultPrincipalRequest.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 GetDefaultPrincipalRequest} extends {@link RequestModel}
*
* <p>GetDefaultPrincipalRequest</p>
*/
public class GetDefaultPrincipalRequest extends Request {
private GetDefaultPrincipalRequest(Builder builder) {
super(builder);
}
public static Builder builder() {
return new Builder();
}
public static GetDefaultPrincipalRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
public static final class Builder extends Request.Builder<GetDefaultPrincipalRequest, Builder> {
private Builder() {
super();
}
private Builder(GetDefaultPrincipalRequest request) {
super(request);
}
@Override
public GetDefaultPrincipalRequest build() {
return new GetDefaultPrincipalRequest(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/GetDefaultPrincipalResponse.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 GetDefaultPrincipalResponse} extends {@link TeaModel}
*
* <p>GetDefaultPrincipalResponse</p>
*/
public class GetDefaultPrincipalResponse 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 GetDefaultPrincipalResponseBody body;
private GetDefaultPrincipalResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetDefaultPrincipalResponse 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 GetDefaultPrincipalResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetDefaultPrincipalResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetDefaultPrincipalResponseBody body);
@Override
GetDefaultPrincipalResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetDefaultPrincipalResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetDefaultPrincipalResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetDefaultPrincipalResponse 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(GetDefaultPrincipalResponseBody body) {
this.body = body;
return this;
}
@Override
public GetDefaultPrincipalResponse build() {
return new GetDefaultPrincipalResponse(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/GetDefaultPrincipalResponseBody.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 GetDefaultPrincipalResponseBody} extends {@link TeaModel}
*
* <p>GetDefaultPrincipalResponseBody</p>
*/
public class GetDefaultPrincipalResponseBody extends TeaModel {
@NameInMap("PrincipalDescription")
private String principalDescription;
@NameInMap("PrincipalName")
private String principalName;
@NameInMap("PrincipalValue")
private Integer principalValue;
@NameInMap("RequestId")
private String requestId;
private GetDefaultPrincipalResponseBody(Builder builder) {
this.principalDescription = builder.principalDescription;
this.principalName = builder.principalName;
this.principalValue = builder.principalValue;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetDefaultPrincipalResponseBody create() {
return builder().build();
}
/**
* @return principalDescription
*/
public String getPrincipalDescription() {
return this.principalDescription;
}
/**
* @return principalName
*/
public String getPrincipalName() {
return this.principalName;
}
/**
* @return principalValue
*/
public Integer getPrincipalValue() {
return this.principalValue;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String principalDescription;
private String principalName;
private Integer principalValue;
private String requestId;
/**
* PrincipalDescription.
*/
public Builder principalDescription(String principalDescription) {
this.principalDescription = principalDescription;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(String principalName) {
this.principalName = principalName;
return this;
}
/**
* PrincipalValue.
*/
public Builder principalValue(Integer principalValue) {
this.principalValue = principalValue;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetDefaultPrincipalResponseBody build() {
return new GetDefaultPrincipalResponseBody(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/GetNotaryOrderRequest.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 GetNotaryOrderRequest} extends {@link RequestModel}
*
* <p>GetNotaryOrderRequest</p>
*/
public class GetNotaryOrderRequest extends Request {
@Query
@NameInMap("NotaryOrderId")
@Validation(required = true)
private Long notaryOrderId;
private GetNotaryOrderRequest(Builder builder) {
super(builder);
this.notaryOrderId = builder.notaryOrderId;
}
public static Builder builder() {
return new Builder();
}
public static GetNotaryOrderRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return notaryOrderId
*/
public Long getNotaryOrderId() {
return this.notaryOrderId;
}
public static final class Builder extends Request.Builder<GetNotaryOrderRequest, Builder> {
private Long notaryOrderId;
private Builder() {
super();
}
private Builder(GetNotaryOrderRequest request) {
super(request);
this.notaryOrderId = request.notaryOrderId;
}
/**
* NotaryOrderId.
*/
public Builder notaryOrderId(Long notaryOrderId) {
this.putQueryParameter("NotaryOrderId", notaryOrderId);
this.notaryOrderId = notaryOrderId;
return this;
}
@Override
public GetNotaryOrderRequest build() {
return new GetNotaryOrderRequest(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/GetNotaryOrderResponse.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 GetNotaryOrderResponse} extends {@link TeaModel}
*
* <p>GetNotaryOrderResponse</p>
*/
public class GetNotaryOrderResponse 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 GetNotaryOrderResponseBody body;
private GetNotaryOrderResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetNotaryOrderResponse 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 GetNotaryOrderResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetNotaryOrderResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetNotaryOrderResponseBody body);
@Override
GetNotaryOrderResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetNotaryOrderResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetNotaryOrderResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetNotaryOrderResponse 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(GetNotaryOrderResponseBody body) {
this.body = body;
return this;
}
@Override
public GetNotaryOrderResponse build() {
return new GetNotaryOrderResponse(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/GetNotaryOrderResponseBody.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 GetNotaryOrderResponseBody} extends {@link TeaModel}
*
* <p>GetNotaryOrderResponseBody</p>
*/
public class GetNotaryOrderResponseBody extends TeaModel {
@NameInMap("AliyunOrderId")
private String aliyunOrderId;
@NameInMap("ApplyPostStatus")
private Integer applyPostStatus;
@NameInMap("BizId")
private String bizId;
@NameInMap("BusinessLicense")
private String businessLicense;
@NameInMap("BusinessLicenseId")
private String businessLicenseId;
@NameInMap("CompanyContactName")
private String companyContactName;
@NameInMap("CompanyContactPhone")
private String companyContactPhone;
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("LegalPersonIdCard")
private String legalPersonIdCard;
@NameInMap("LegalPersonName")
private String legalPersonName;
@NameInMap("LegalPersonPhone")
private String legalPersonPhone;
@NameInMap("Name")
private String name;
@NameInMap("NotaryAcceptDate")
private Long notaryAcceptDate;
@NameInMap("NotaryCertificate")
private String notaryCertificate;
@NameInMap("NotaryFailedDate")
private Long notaryFailedDate;
@NameInMap("NotaryFailedReason")
private String notaryFailedReason;
@NameInMap("NotaryOrderId")
private Long notaryOrderId;
@NameInMap("NotaryPlatformName")
private String notaryPlatformName;
@NameInMap("NotaryPostReceipt")
private String notaryPostReceipt;
@NameInMap("NotaryStatus")
private Integer notaryStatus;
@NameInMap("NotarySucceedDate")
private Long notarySucceedDate;
@NameInMap("NotaryType")
private Integer notaryType;
@NameInMap("OrderDate")
private Long orderDate;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("Phone")
private String phone;
@NameInMap("ReceiverAddress")
private String receiverAddress;
@NameInMap("ReceiverName")
private String receiverName;
@NameInMap("ReceiverPhone")
private String receiverPhone;
@NameInMap("ReceiverPostalCode")
private String receiverPostalCode;
@NameInMap("RequestId")
private String requestId;
@NameInMap("SellerBackOfIdCard")
private String sellerBackOfIdCard;
@NameInMap("SellerCompanyName")
private String sellerCompanyName;
@NameInMap("SellerFrontOfIdCard")
private String sellerFrontOfIdCard;
@NameInMap("Success")
private Boolean success;
@NameInMap("TmAcceptCertificate")
private String tmAcceptCertificate;
@NameInMap("TmClassification")
private String tmClassification;
@NameInMap("TmImage")
private String tmImage;
@NameInMap("TmName")
private String tmName;
@NameInMap("TmRegisterCertificate")
private String tmRegisterCertificate;
@NameInMap("TmRegisterChangeCertificate")
private String tmRegisterChangeCertificate;
@NameInMap("TmRegisterNo")
private String tmRegisterNo;
@NameInMap("Type")
private String type;
private GetNotaryOrderResponseBody(Builder builder) {
this.aliyunOrderId = builder.aliyunOrderId;
this.applyPostStatus = builder.applyPostStatus;
this.bizId = builder.bizId;
this.businessLicense = builder.businessLicense;
this.businessLicenseId = builder.businessLicenseId;
this.companyContactName = builder.companyContactName;
this.companyContactPhone = builder.companyContactPhone;
this.errorCode = builder.errorCode;
this.errorMsg = builder.errorMsg;
this.legalPersonIdCard = builder.legalPersonIdCard;
this.legalPersonName = builder.legalPersonName;
this.legalPersonPhone = builder.legalPersonPhone;
this.name = builder.name;
this.notaryAcceptDate = builder.notaryAcceptDate;
this.notaryCertificate = builder.notaryCertificate;
this.notaryFailedDate = builder.notaryFailedDate;
this.notaryFailedReason = builder.notaryFailedReason;
this.notaryOrderId = builder.notaryOrderId;
this.notaryPlatformName = builder.notaryPlatformName;
this.notaryPostReceipt = builder.notaryPostReceipt;
this.notaryStatus = builder.notaryStatus;
this.notarySucceedDate = builder.notarySucceedDate;
this.notaryType = builder.notaryType;
this.orderDate = builder.orderDate;
this.orderPrice = builder.orderPrice;
this.phone = builder.phone;
this.receiverAddress = builder.receiverAddress;
this.receiverName = builder.receiverName;
this.receiverPhone = builder.receiverPhone;
this.receiverPostalCode = builder.receiverPostalCode;
this.requestId = builder.requestId;
this.sellerBackOfIdCard = builder.sellerBackOfIdCard;
this.sellerCompanyName = builder.sellerCompanyName;
this.sellerFrontOfIdCard = builder.sellerFrontOfIdCard;
this.success = builder.success;
this.tmAcceptCertificate = builder.tmAcceptCertificate;
this.tmClassification = builder.tmClassification;
this.tmImage = builder.tmImage;
this.tmName = builder.tmName;
this.tmRegisterCertificate = builder.tmRegisterCertificate;
this.tmRegisterChangeCertificate = builder.tmRegisterChangeCertificate;
this.tmRegisterNo = builder.tmRegisterNo;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static GetNotaryOrderResponseBody create() {
return builder().build();
}
/**
* @return aliyunOrderId
*/
public String getAliyunOrderId() {
return this.aliyunOrderId;
}
/**
* @return applyPostStatus
*/
public Integer getApplyPostStatus() {
return this.applyPostStatus;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return businessLicense
*/
public String getBusinessLicense() {
return this.businessLicense;
}
/**
* @return businessLicenseId
*/
public String getBusinessLicenseId() {
return this.businessLicenseId;
}
/**
* @return companyContactName
*/
public String getCompanyContactName() {
return this.companyContactName;
}
/**
* @return companyContactPhone
*/
public String getCompanyContactPhone() {
return this.companyContactPhone;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMsg
*/
public String getErrorMsg() {
return this.errorMsg;
}
/**
* @return legalPersonIdCard
*/
public String getLegalPersonIdCard() {
return this.legalPersonIdCard;
}
/**
* @return legalPersonName
*/
public String getLegalPersonName() {
return this.legalPersonName;
}
/**
* @return legalPersonPhone
*/
public String getLegalPersonPhone() {
return this.legalPersonPhone;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return notaryAcceptDate
*/
public Long getNotaryAcceptDate() {
return this.notaryAcceptDate;
}
/**
* @return notaryCertificate
*/
public String getNotaryCertificate() {
return this.notaryCertificate;
}
/**
* @return notaryFailedDate
*/
public Long getNotaryFailedDate() {
return this.notaryFailedDate;
}
/**
* @return notaryFailedReason
*/
public String getNotaryFailedReason() {
return this.notaryFailedReason;
}
/**
* @return notaryOrderId
*/
public Long getNotaryOrderId() {
return this.notaryOrderId;
}
/**
* @return notaryPlatformName
*/
public String getNotaryPlatformName() {
return this.notaryPlatformName;
}
/**
* @return notaryPostReceipt
*/
public String getNotaryPostReceipt() {
return this.notaryPostReceipt;
}
/**
* @return notaryStatus
*/
public Integer getNotaryStatus() {
return this.notaryStatus;
}
/**
* @return notarySucceedDate
*/
public Long getNotarySucceedDate() {
return this.notarySucceedDate;
}
/**
* @return notaryType
*/
public Integer getNotaryType() {
return this.notaryType;
}
/**
* @return orderDate
*/
public Long getOrderDate() {
return this.orderDate;
}
/**
* @return orderPrice
*/
public Float getOrderPrice() {
return this.orderPrice;
}
/**
* @return phone
*/
public String getPhone() {
return this.phone;
}
/**
* @return receiverAddress
*/
public String getReceiverAddress() {
return this.receiverAddress;
}
/**
* @return receiverName
*/
public String getReceiverName() {
return this.receiverName;
}
/**
* @return receiverPhone
*/
public String getReceiverPhone() {
return this.receiverPhone;
}
/**
* @return receiverPostalCode
*/
public String getReceiverPostalCode() {
return this.receiverPostalCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return sellerBackOfIdCard
*/
public String getSellerBackOfIdCard() {
return this.sellerBackOfIdCard;
}
/**
* @return sellerCompanyName
*/
public String getSellerCompanyName() {
return this.sellerCompanyName;
}
/**
* @return sellerFrontOfIdCard
*/
public String getSellerFrontOfIdCard() {
return this.sellerFrontOfIdCard;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @return tmAcceptCertificate
*/
public String getTmAcceptCertificate() {
return this.tmAcceptCertificate;
}
/**
* @return tmClassification
*/
public String getTmClassification() {
return this.tmClassification;
}
/**
* @return tmImage
*/
public String getTmImage() {
return this.tmImage;
}
/**
* @return tmName
*/
public String getTmName() {
return this.tmName;
}
/**
* @return tmRegisterCertificate
*/
public String getTmRegisterCertificate() {
return this.tmRegisterCertificate;
}
/**
* @return tmRegisterChangeCertificate
*/
public String getTmRegisterChangeCertificate() {
return this.tmRegisterChangeCertificate;
}
/**
* @return tmRegisterNo
*/
public String getTmRegisterNo() {
return this.tmRegisterNo;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder {
private String aliyunOrderId;
private Integer applyPostStatus;
private String bizId;
private String businessLicense;
private String businessLicenseId;
private String companyContactName;
private String companyContactPhone;
private String errorCode;
private String errorMsg;
private String legalPersonIdCard;
private String legalPersonName;
private String legalPersonPhone;
private String name;
private Long notaryAcceptDate;
private String notaryCertificate;
private Long notaryFailedDate;
private String notaryFailedReason;
private Long notaryOrderId;
private String notaryPlatformName;
private String notaryPostReceipt;
private Integer notaryStatus;
private Long notarySucceedDate;
private Integer notaryType;
private Long orderDate;
private Float orderPrice;
private String phone;
private String receiverAddress;
private String receiverName;
private String receiverPhone;
private String receiverPostalCode;
private String requestId;
private String sellerBackOfIdCard;
private String sellerCompanyName;
private String sellerFrontOfIdCard;
private Boolean success;
private String tmAcceptCertificate;
private String tmClassification;
private String tmImage;
private String tmName;
private String tmRegisterCertificate;
private String tmRegisterChangeCertificate;
private String tmRegisterNo;
private String type;
/**
* AliyunOrderId.
*/
public Builder aliyunOrderId(String aliyunOrderId) {
this.aliyunOrderId = aliyunOrderId;
return this;
}
/**
* ApplyPostStatus.
*/
public Builder applyPostStatus(Integer applyPostStatus) {
this.applyPostStatus = applyPostStatus;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* BusinessLicense.
*/
public Builder businessLicense(String businessLicense) {
this.businessLicense = businessLicense;
return this;
}
/**
* BusinessLicenseId.
*/
public Builder businessLicenseId(String businessLicenseId) {
this.businessLicenseId = businessLicenseId;
return this;
}
/**
* CompanyContactName.
*/
public Builder companyContactName(String companyContactName) {
this.companyContactName = companyContactName;
return this;
}
/**
* CompanyContactPhone.
*/
public Builder companyContactPhone(String companyContactPhone) {
this.companyContactPhone = companyContactPhone;
return this;
}
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMsg.
*/
public Builder errorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
/**
* LegalPersonIdCard.
*/
public Builder legalPersonIdCard(String legalPersonIdCard) {
this.legalPersonIdCard = legalPersonIdCard;
return this;
}
/**
* LegalPersonName.
*/
public Builder legalPersonName(String legalPersonName) {
this.legalPersonName = legalPersonName;
return this;
}
/**
* LegalPersonPhone.
*/
public Builder legalPersonPhone(String legalPersonPhone) {
this.legalPersonPhone = legalPersonPhone;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* NotaryAcceptDate.
*/
public Builder notaryAcceptDate(Long notaryAcceptDate) {
this.notaryAcceptDate = notaryAcceptDate;
return this;
}
/**
* NotaryCertificate.
*/
public Builder notaryCertificate(String notaryCertificate) {
this.notaryCertificate = notaryCertificate;
return this;
}
/**
* NotaryFailedDate.
*/
public Builder notaryFailedDate(Long notaryFailedDate) {
this.notaryFailedDate = notaryFailedDate;
return this;
}
/**
* NotaryFailedReason.
*/
public Builder notaryFailedReason(String notaryFailedReason) {
this.notaryFailedReason = notaryFailedReason;
return this;
}
/**
* NotaryOrderId.
*/
public Builder notaryOrderId(Long notaryOrderId) {
this.notaryOrderId = notaryOrderId;
return this;
}
/**
* NotaryPlatformName.
*/
public Builder notaryPlatformName(String notaryPlatformName) {
this.notaryPlatformName = notaryPlatformName;
return this;
}
/**
* NotaryPostReceipt.
*/
public Builder notaryPostReceipt(String notaryPostReceipt) {
this.notaryPostReceipt = notaryPostReceipt;
return this;
}
/**
* NotaryStatus.
*/
public Builder notaryStatus(Integer notaryStatus) {
this.notaryStatus = notaryStatus;
return this;
}
/**
* NotarySucceedDate.
*/
public Builder notarySucceedDate(Long notarySucceedDate) {
this.notarySucceedDate = notarySucceedDate;
return this;
}
/**
* NotaryType.
*/
public Builder notaryType(Integer notaryType) {
this.notaryType = notaryType;
return this;
}
/**
* OrderDate.
*/
public Builder orderDate(Long orderDate) {
this.orderDate = orderDate;
return this;
}
/**
* OrderPrice.
*/
public Builder orderPrice(Float orderPrice) {
this.orderPrice = orderPrice;
return this;
}
/**
* Phone.
*/
public Builder phone(String phone) {
this.phone = phone;
return this;
}
/**
* ReceiverAddress.
*/
public Builder receiverAddress(String receiverAddress) {
this.receiverAddress = receiverAddress;
return this;
}
/**
* ReceiverName.
*/
public Builder receiverName(String receiverName) {
this.receiverName = receiverName;
return this;
}
/**
* ReceiverPhone.
*/
public Builder receiverPhone(String receiverPhone) {
this.receiverPhone = receiverPhone;
return this;
}
/**
* ReceiverPostalCode.
*/
public Builder receiverPostalCode(String receiverPostalCode) {
this.receiverPostalCode = receiverPostalCode;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SellerBackOfIdCard.
*/
public Builder sellerBackOfIdCard(String sellerBackOfIdCard) {
this.sellerBackOfIdCard = sellerBackOfIdCard;
return this;
}
/**
* SellerCompanyName.
*/
public Builder sellerCompanyName(String sellerCompanyName) {
this.sellerCompanyName = sellerCompanyName;
return this;
}
/**
* SellerFrontOfIdCard.
*/
public Builder sellerFrontOfIdCard(String sellerFrontOfIdCard) {
this.sellerFrontOfIdCard = sellerFrontOfIdCard;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
/**
* TmAcceptCertificate.
*/
public Builder tmAcceptCertificate(String tmAcceptCertificate) {
this.tmAcceptCertificate = tmAcceptCertificate;
return this;
}
/**
* TmClassification.
*/
public Builder tmClassification(String tmClassification) {
this.tmClassification = tmClassification;
return this;
}
/**
* TmImage.
*/
public Builder tmImage(String tmImage) {
this.tmImage = tmImage;
return this;
}
/**
* TmName.
*/
public Builder tmName(String tmName) {
this.tmName = tmName;
return this;
}
/**
* TmRegisterCertificate.
*/
public Builder tmRegisterCertificate(String tmRegisterCertificate) {
this.tmRegisterCertificate = tmRegisterCertificate;
return this;
}
/**
* TmRegisterChangeCertificate.
*/
public Builder tmRegisterChangeCertificate(String tmRegisterChangeCertificate) {
this.tmRegisterChangeCertificate = tmRegisterChangeCertificate;
return this;
}
/**
* TmRegisterNo.
*/
public Builder tmRegisterNo(String tmRegisterNo) {
this.tmRegisterNo = tmRegisterNo;
return this;
}
/**
* Type.
*/
public Builder type(String type) {
this.type = type;
return this;
}
public GetNotaryOrderResponseBody build() {
return new GetNotaryOrderResponseBody(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/GetSupportPrincipalNameRequest.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 GetSupportPrincipalNameRequest} extends {@link RequestModel}
*
* <p>GetSupportPrincipalNameRequest</p>
*/
public class GetSupportPrincipalNameRequest extends Request {
private GetSupportPrincipalNameRequest(Builder builder) {
super(builder);
}
public static Builder builder() {
return new Builder();
}
public static GetSupportPrincipalNameRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
public static final class Builder extends Request.Builder<GetSupportPrincipalNameRequest, Builder> {
private Builder() {
super();
}
private Builder(GetSupportPrincipalNameRequest request) {
super(request);
}
@Override
public GetSupportPrincipalNameRequest build() {
return new GetSupportPrincipalNameRequest(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/GetSupportPrincipalNameResponse.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 GetSupportPrincipalNameResponse} extends {@link TeaModel}
*
* <p>GetSupportPrincipalNameResponse</p>
*/
public class GetSupportPrincipalNameResponse 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 GetSupportPrincipalNameResponseBody body;
private GetSupportPrincipalNameResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetSupportPrincipalNameResponse 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 GetSupportPrincipalNameResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetSupportPrincipalNameResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetSupportPrincipalNameResponseBody body);
@Override
GetSupportPrincipalNameResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetSupportPrincipalNameResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetSupportPrincipalNameResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetSupportPrincipalNameResponse 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(GetSupportPrincipalNameResponseBody body) {
this.body = body;
return this;
}
@Override
public GetSupportPrincipalNameResponse build() {
return new GetSupportPrincipalNameResponse(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/GetSupportPrincipalNameResponseBody.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 GetSupportPrincipalNameResponseBody} extends {@link TeaModel}
*
* <p>GetSupportPrincipalNameResponseBody</p>
*/
public class GetSupportPrincipalNameResponseBody extends TeaModel {
@NameInMap("Principals")
private java.util.List < Principals> principals;
@NameInMap("RequestId")
private String requestId;
private GetSupportPrincipalNameResponseBody(Builder builder) {
this.principals = builder.principals;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetSupportPrincipalNameResponseBody create() {
return builder().build();
}
/**
* @return principals
*/
public java.util.List < Principals> getPrincipals() {
return this.principals;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < Principals> principals;
private String requestId;
/**
* Principals.
*/
public Builder principals(java.util.List < Principals> principals) {
this.principals = principals;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetSupportPrincipalNameResponseBody build() {
return new GetSupportPrincipalNameResponseBody(this);
}
}
public static class Principals extends TeaModel {
@NameInMap("DefaultPrincipal")
private Boolean defaultPrincipal;
@NameInMap("PrincipalDescription")
private String principalDescription;
@NameInMap("PrincipalValue")
private Integer principalValue;
private Principals(Builder builder) {
this.defaultPrincipal = builder.defaultPrincipal;
this.principalDescription = builder.principalDescription;
this.principalValue = builder.principalValue;
}
public static Builder builder() {
return new Builder();
}
public static Principals create() {
return builder().build();
}
/**
* @return defaultPrincipal
*/
public Boolean getDefaultPrincipal() {
return this.defaultPrincipal;
}
/**
* @return principalDescription
*/
public String getPrincipalDescription() {
return this.principalDescription;
}
/**
* @return principalValue
*/
public Integer getPrincipalValue() {
return this.principalValue;
}
public static final class Builder {
private Boolean defaultPrincipal;
private String principalDescription;
private Integer principalValue;
/**
* DefaultPrincipal.
*/
public Builder defaultPrincipal(Boolean defaultPrincipal) {
this.defaultPrincipal = defaultPrincipal;
return this;
}
/**
* PrincipalDescription.
*/
public Builder principalDescription(String principalDescription) {
this.principalDescription = principalDescription;
return this;
}
/**
* PrincipalValue.
*/
public Builder principalValue(Integer principalValue) {
this.principalValue = principalValue;
return this;
}
public Principals build() {
return new Principals(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/InsertMaterialRequest.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 InsertMaterialRequest} extends {@link RequestModel}
*
* <p>InsertMaterialRequest</p>
*/
public class InsertMaterialRequest extends Request {
@Query
@NameInMap("Address")
private String address;
@Query
@NameInMap("BusinessLicenceOssKey")
private String businessLicenceOssKey;
@Query
@NameInMap("CardNumber")
private String cardNumber;
@Query
@NameInMap("City")
private String city;
@Query
@NameInMap("ContactAddress")
private String contactAddress;
@Query
@NameInMap("ContactCity")
private String contactCity;
@Query
@NameInMap("ContactCounty")
private String contactCounty;
@Query
@NameInMap("ContactDistrict")
private String contactDistrict;
@Query
@NameInMap("ContactEmail")
private String contactEmail;
@Query
@NameInMap("ContactName")
private String contactName;
@Query
@NameInMap("ContactNumber")
private String contactNumber;
@Query
@NameInMap("ContactProvince")
private String contactProvince;
@Query
@NameInMap("ContactZipcode")
private String contactZipcode;
@Query
@NameInMap("Country")
private String country;
@Query
@NameInMap("EAddress")
private String eAddress;
@Query
@NameInMap("EName")
private String eName;
@Query
@NameInMap("IdCardName")
private String idCardName;
@Query
@NameInMap("IdCardNumber")
private String idCardNumber;
@Query
@NameInMap("IdCardOssKey")
private String idCardOssKey;
@Query
@NameInMap("LegalNoticeOssKey")
private String legalNoticeOssKey;
@Query
@NameInMap("LoaOssKey")
private String loaOssKey;
@Query
@NameInMap("Name")
private String name;
@Query
@NameInMap("PassportOssKey")
private String passportOssKey;
@Query
@NameInMap("PersonalType")
private Long personalType;
@Query
@NameInMap("PrincipalName")
@Validation(maximum = 100, minimum = 1)
private Integer principalName;
@Query
@NameInMap("Province")
private String province;
@Query
@NameInMap("Region")
@Validation(maximum = 5, minimum = 1)
private Integer region;
@Query
@NameInMap("Town")
private String town;
@Query
@NameInMap("Type")
@Validation(maximum = 2, minimum = 1)
private Integer type;
private InsertMaterialRequest(Builder builder) {
super(builder);
this.address = builder.address;
this.businessLicenceOssKey = builder.businessLicenceOssKey;
this.cardNumber = builder.cardNumber;
this.city = builder.city;
this.contactAddress = builder.contactAddress;
this.contactCity = builder.contactCity;
this.contactCounty = builder.contactCounty;
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.eAddress = builder.eAddress;
this.eName = builder.eName;
this.idCardName = builder.idCardName;
this.idCardNumber = builder.idCardNumber;
this.idCardOssKey = builder.idCardOssKey;
this.legalNoticeOssKey = builder.legalNoticeOssKey;
this.loaOssKey = builder.loaOssKey;
this.name = builder.name;
this.passportOssKey = builder.passportOssKey;
this.personalType = builder.personalType;
this.principalName = builder.principalName;
this.province = builder.province;
this.region = builder.region;
this.town = builder.town;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static InsertMaterialRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return businessLicenceOssKey
*/
public String getBusinessLicenceOssKey() {
return this.businessLicenceOssKey;
}
/**
* @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 contactCounty
*/
public String getContactCounty() {
return this.contactCounty;
}
/**
* @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 eAddress
*/
public String getEAddress() {
return this.eAddress;
}
/**
* @return eName
*/
public String getEName() {
return this.eName;
}
/**
* @return idCardName
*/
public String getIdCardName() {
return this.idCardName;
}
/**
* @return idCardNumber
*/
public String getIdCardNumber() {
return this.idCardNumber;
}
/**
* @return idCardOssKey
*/
public String getIdCardOssKey() {
return this.idCardOssKey;
}
/**
* @return legalNoticeOssKey
*/
public String getLegalNoticeOssKey() {
return this.legalNoticeOssKey;
}
/**
* @return loaOssKey
*/
public String getLoaOssKey() {
return this.loaOssKey;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return passportOssKey
*/
public String getPassportOssKey() {
return this.passportOssKey;
}
/**
* @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 town
*/
public String getTown() {
return this.town;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
public static final class Builder extends Request.Builder<InsertMaterialRequest, Builder> {
private String address;
private String businessLicenceOssKey;
private String cardNumber;
private String city;
private String contactAddress;
private String contactCity;
private String contactCounty;
private String contactDistrict;
private String contactEmail;
private String contactName;
private String contactNumber;
private String contactProvince;
private String contactZipcode;
private String country;
private String eAddress;
private String eName;
private String idCardName;
private String idCardNumber;
private String idCardOssKey;
private String legalNoticeOssKey;
private String loaOssKey;
private String name;
private String passportOssKey;
private Long personalType;
private Integer principalName;
private String province;
private Integer region;
private String town;
private Integer type;
private Builder() {
super();
}
private Builder(InsertMaterialRequest request) {
super(request);
this.address = request.address;
this.businessLicenceOssKey = request.businessLicenceOssKey;
this.cardNumber = request.cardNumber;
this.city = request.city;
this.contactAddress = request.contactAddress;
this.contactCity = request.contactCity;
this.contactCounty = request.contactCounty;
this.contactDistrict = request.contactDistrict;
this.contactEmail = request.contactEmail;
this.contactName = request.contactName;
this.contactNumber = request.contactNumber;
this.contactProvince = request.contactProvince;
this.contactZipcode = request.contactZipcode;
this.country = request.country;
this.eAddress = request.eAddress;
this.eName = request.eName;
this.idCardName = request.idCardName;
this.idCardNumber = request.idCardNumber;
this.idCardOssKey = request.idCardOssKey;
this.legalNoticeOssKey = request.legalNoticeOssKey;
this.loaOssKey = request.loaOssKey;
this.name = request.name;
this.passportOssKey = request.passportOssKey;
this.personalType = request.personalType;
this.principalName = request.principalName;
this.province = request.province;
this.region = request.region;
this.town = request.town;
this.type = request.type;
}
/**
* Address.
*/
public Builder address(String address) {
this.putQueryParameter("Address", address);
this.address = address;
return this;
}
/**
* BusinessLicenceOssKey.
*/
public Builder businessLicenceOssKey(String businessLicenceOssKey) {
this.putQueryParameter("BusinessLicenceOssKey", businessLicenceOssKey);
this.businessLicenceOssKey = businessLicenceOssKey;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.putQueryParameter("CardNumber", cardNumber);
this.cardNumber = cardNumber;
return this;
}
/**
* City.
*/
public Builder city(String city) {
this.putQueryParameter("City", city);
this.city = city;
return this;
}
/**
* ContactAddress.
*/
public Builder contactAddress(String contactAddress) {
this.putQueryParameter("ContactAddress", contactAddress);
this.contactAddress = contactAddress;
return this;
}
/**
* ContactCity.
*/
public Builder contactCity(String contactCity) {
this.putQueryParameter("ContactCity", contactCity);
this.contactCity = contactCity;
return this;
}
/**
* ContactCounty.
*/
public Builder contactCounty(String contactCounty) {
this.putQueryParameter("ContactCounty", contactCounty);
this.contactCounty = contactCounty;
return this;
}
/**
* ContactDistrict.
*/
public Builder contactDistrict(String contactDistrict) {
this.putQueryParameter("ContactDistrict", contactDistrict);
this.contactDistrict = contactDistrict;
return this;
}
/**
* ContactEmail.
*/
public Builder contactEmail(String contactEmail) {
this.putQueryParameter("ContactEmail", contactEmail);
this.contactEmail = contactEmail;
return this;
}
/**
* ContactName.
*/
public Builder contactName(String contactName) {
this.putQueryParameter("ContactName", contactName);
this.contactName = contactName;
return this;
}
/**
* ContactNumber.
*/
public Builder contactNumber(String contactNumber) {
this.putQueryParameter("ContactNumber", contactNumber);
this.contactNumber = contactNumber;
return this;
}
/**
* ContactProvince.
*/
public Builder contactProvince(String contactProvince) {
this.putQueryParameter("ContactProvince", contactProvince);
this.contactProvince = contactProvince;
return this;
}
/**
* ContactZipcode.
*/
public Builder contactZipcode(String contactZipcode) {
this.putQueryParameter("ContactZipcode", contactZipcode);
this.contactZipcode = contactZipcode;
return this;
}
/**
* Country.
*/
public Builder country(String country) {
this.putQueryParameter("Country", country);
this.country = country;
return this;
}
/**
* EAddress.
*/
public Builder eAddress(String eAddress) {
this.putQueryParameter("EAddress", eAddress);
this.eAddress = eAddress;
return this;
}
/**
* EName.
*/
public Builder eName(String eName) {
this.putQueryParameter("EName", eName);
this.eName = eName;
return this;
}
/**
* IdCardName.
*/
public Builder idCardName(String idCardName) {
this.putQueryParameter("IdCardName", idCardName);
this.idCardName = idCardName;
return this;
}
/**
* IdCardNumber.
*/
public Builder idCardNumber(String idCardNumber) {
this.putQueryParameter("IdCardNumber", idCardNumber);
this.idCardNumber = idCardNumber;
return this;
}
/**
* IdCardOssKey.
*/
public Builder idCardOssKey(String idCardOssKey) {
this.putQueryParameter("IdCardOssKey", idCardOssKey);
this.idCardOssKey = idCardOssKey;
return this;
}
/**
* LegalNoticeOssKey.
*/
public Builder legalNoticeOssKey(String legalNoticeOssKey) {
this.putQueryParameter("LegalNoticeOssKey", legalNoticeOssKey);
this.legalNoticeOssKey = legalNoticeOssKey;
return this;
}
/**
* LoaOssKey.
*/
public Builder loaOssKey(String loaOssKey) {
this.putQueryParameter("LoaOssKey", loaOssKey);
this.loaOssKey = loaOssKey;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.putQueryParameter("Name", name);
this.name = name;
return this;
}
/**
* PassportOssKey.
*/
public Builder passportOssKey(String passportOssKey) {
this.putQueryParameter("PassportOssKey", passportOssKey);
this.passportOssKey = passportOssKey;
return this;
}
/**
* PersonalType.
*/
public Builder personalType(Long personalType) {
this.putQueryParameter("PersonalType", personalType);
this.personalType = personalType;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.putQueryParameter("PrincipalName", principalName);
this.principalName = principalName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.putQueryParameter("Province", province);
this.province = province;
return this;
}
/**
* Region.
*/
public Builder region(Integer region) {
this.putQueryParameter("Region", region);
this.region = region;
return this;
}
/**
* Town.
*/
public Builder town(String town) {
this.putQueryParameter("Town", town);
this.town = town;
return this;
}
/**
* Type.
*/
public Builder type(Integer type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public InsertMaterialRequest build() {
return new InsertMaterialRequest(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/InsertMaterialResponse.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 InsertMaterialResponse} extends {@link TeaModel}
*
* <p>InsertMaterialResponse</p>
*/
public class InsertMaterialResponse 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 InsertMaterialResponseBody body;
private InsertMaterialResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static InsertMaterialResponse 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 InsertMaterialResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<InsertMaterialResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(InsertMaterialResponseBody body);
@Override
InsertMaterialResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<InsertMaterialResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private InsertMaterialResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(InsertMaterialResponse 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(InsertMaterialResponseBody body) {
this.body = body;
return this;
}
@Override
public InsertMaterialResponse build() {
return new InsertMaterialResponse(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/InsertMaterialResponseBody.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 InsertMaterialResponseBody} extends {@link TeaModel}
*
* <p>InsertMaterialResponseBody</p>
*/
public class InsertMaterialResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private InsertMaterialResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static InsertMaterialResponseBody 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 InsertMaterialResponseBody build() {
return new InsertMaterialResponseBody(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/InsertRenewInfoRequest.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 InsertRenewInfoRequest} extends {@link RequestModel}
*
* <p>InsertRenewInfoRequest</p>
*/
public class InsertRenewInfoRequest extends Request {
@Query
@NameInMap("Address")
@Validation(required = true)
private String address;
@Query
@NameInMap("EngAddress")
private String engAddress;
@Query
@NameInMap("EngName")
private String engName;
@Query
@NameInMap("Name")
@Validation(required = true)
private String name;
@Query
@NameInMap("RegisterTime")
@Validation(required = true)
private Long registerTime;
private InsertRenewInfoRequest(Builder builder) {
super(builder);
this.address = builder.address;
this.engAddress = builder.engAddress;
this.engName = builder.engName;
this.name = builder.name;
this.registerTime = builder.registerTime;
}
public static Builder builder() {
return new Builder();
}
public static InsertRenewInfoRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @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;
}
public static final class Builder extends Request.Builder<InsertRenewInfoRequest, Builder> {
private String address;
private String engAddress;
private String engName;
private String name;
private Long registerTime;
private Builder() {
super();
}
private Builder(InsertRenewInfoRequest request) {
super(request);
this.address = request.address;
this.engAddress = request.engAddress;
this.engName = request.engName;
this.name = request.name;
this.registerTime = request.registerTime;
}
/**
* Address.
*/
public Builder address(String address) {
this.putQueryParameter("Address", address);
this.address = address;
return this;
}
/**
* EngAddress.
*/
public Builder engAddress(String engAddress) {
this.putQueryParameter("EngAddress", engAddress);
this.engAddress = engAddress;
return this;
}
/**
* EngName.
*/
public Builder engName(String engName) {
this.putQueryParameter("EngName", engName);
this.engName = engName;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.putQueryParameter("Name", name);
this.name = name;
return this;
}
/**
* RegisterTime.
*/
public Builder registerTime(Long registerTime) {
this.putQueryParameter("RegisterTime", registerTime);
this.registerTime = registerTime;
return this;
}
@Override
public InsertRenewInfoRequest build() {
return new InsertRenewInfoRequest(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/InsertRenewInfoResponse.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 InsertRenewInfoResponse} extends {@link TeaModel}
*
* <p>InsertRenewInfoResponse</p>
*/
public class InsertRenewInfoResponse 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 InsertRenewInfoResponseBody body;
private InsertRenewInfoResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static InsertRenewInfoResponse 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 InsertRenewInfoResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<InsertRenewInfoResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(InsertRenewInfoResponseBody body);
@Override
InsertRenewInfoResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<InsertRenewInfoResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private InsertRenewInfoResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(InsertRenewInfoResponse 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(InsertRenewInfoResponseBody body) {
this.body = body;
return this;
}
@Override
public InsertRenewInfoResponse build() {
return new InsertRenewInfoResponse(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/InsertRenewInfoResponseBody.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 InsertRenewInfoResponseBody} extends {@link TeaModel}
*
* <p>InsertRenewInfoResponseBody</p>
*/
public class InsertRenewInfoResponseBody extends TeaModel {
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("Id")
private Long id;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private InsertRenewInfoResponseBody(Builder builder) {
this.errorCode = builder.errorCode;
this.errorMsg = builder.errorMsg;
this.id = builder.id;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static InsertRenewInfoResponseBody create() {
return builder().build();
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMsg
*/
public String getErrorMsg() {
return this.errorMsg;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @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 Long id;
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;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
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 InsertRenewInfoResponseBody build() {
return new InsertRenewInfoResponseBody(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/InsertTmMonitorRuleRequest.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 InsertTmMonitorRuleRequest} extends {@link RequestModel}
*
* <p>InsertTmMonitorRuleRequest</p>
*/
public class InsertTmMonitorRuleRequest extends Request {
@Query
@NameInMap("Classification")
private java.util.Map < String, ? > classification;
@Query
@NameInMap("EndApplyDate")
private String endApplyDate;
@Query
@NameInMap("NotifyStatus")
private java.util.Map < String, ? > notifyStatus;
@Query
@NameInMap("RuleKeyword")
@Validation(required = true)
private String ruleKeyword;
@Query
@NameInMap("RuleName")
private String ruleName;
@Query
@NameInMap("RuleSource")
@Validation(required = true)
private String ruleSource;
@Query
@NameInMap("RuleType")
@Validation(required = true)
private Integer ruleType;
@Query
@NameInMap("StartApplyDate")
private String startApplyDate;
private InsertTmMonitorRuleRequest(Builder builder) {
super(builder);
this.classification = builder.classification;
this.endApplyDate = builder.endApplyDate;
this.notifyStatus = builder.notifyStatus;
this.ruleKeyword = builder.ruleKeyword;
this.ruleName = builder.ruleName;
this.ruleSource = builder.ruleSource;
this.ruleType = builder.ruleType;
this.startApplyDate = builder.startApplyDate;
}
public static Builder builder() {
return new Builder();
}
public static InsertTmMonitorRuleRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return classification
*/
public java.util.Map < String, ? > getClassification() {
return this.classification;
}
/**
* @return endApplyDate
*/
public String getEndApplyDate() {
return this.endApplyDate;
}
/**
* @return notifyStatus
*/
public java.util.Map < String, ? > getNotifyStatus() {
return this.notifyStatus;
}
/**
* @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 ruleType
*/
public Integer getRuleType() {
return this.ruleType;
}
/**
* @return startApplyDate
*/
public String getStartApplyDate() {
return this.startApplyDate;
}
public static final class Builder extends Request.Builder<InsertTmMonitorRuleRequest, Builder> {
private java.util.Map < String, ? > classification;
private String endApplyDate;
private java.util.Map < String, ? > notifyStatus;
private String ruleKeyword;
private String ruleName;
private String ruleSource;
private Integer ruleType;
private String startApplyDate;
private Builder() {
super();
}
private Builder(InsertTmMonitorRuleRequest request) {
super(request);
this.classification = request.classification;
this.endApplyDate = request.endApplyDate;
this.notifyStatus = request.notifyStatus;
this.ruleKeyword = request.ruleKeyword;
this.ruleName = request.ruleName;
this.ruleSource = request.ruleSource;
this.ruleType = request.ruleType;
this.startApplyDate = request.startApplyDate;
}
/**
* Classification.
*/
public Builder classification(java.util.Map < String, ? > classification) {
String classificationShrink = shrink(classification, "Classification", "json");
this.putQueryParameter("Classification", classificationShrink);
this.classification = classification;
return this;
}
/**
* EndApplyDate.
*/
public Builder endApplyDate(String endApplyDate) {
this.putQueryParameter("EndApplyDate", endApplyDate);
this.endApplyDate = endApplyDate;
return this;
}
/**
* NotifyStatus.
*/
public Builder notifyStatus(java.util.Map < String, ? > notifyStatus) {
String notifyStatusShrink = shrink(notifyStatus, "NotifyStatus", "json");
this.putQueryParameter("NotifyStatus", notifyStatusShrink);
this.notifyStatus = notifyStatus;
return this;
}
/**
* RuleKeyword.
*/
public Builder ruleKeyword(String ruleKeyword) {
this.putQueryParameter("RuleKeyword", ruleKeyword);
this.ruleKeyword = ruleKeyword;
return this;
}
/**
* RuleName.
*/
public Builder ruleName(String ruleName) {
this.putQueryParameter("RuleName", ruleName);
this.ruleName = ruleName;
return this;
}
/**
* RuleSource.
*/
public Builder ruleSource(String ruleSource) {
this.putQueryParameter("RuleSource", ruleSource);
this.ruleSource = ruleSource;
return this;
}
/**
* RuleType.
*/
public Builder ruleType(Integer ruleType) {
this.putQueryParameter("RuleType", ruleType);
this.ruleType = ruleType;
return this;
}
/**
* StartApplyDate.
*/
public Builder startApplyDate(String startApplyDate) {
this.putQueryParameter("StartApplyDate", startApplyDate);
this.startApplyDate = startApplyDate;
return this;
}
@Override
public InsertTmMonitorRuleRequest build() {
return new InsertTmMonitorRuleRequest(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/InsertTmMonitorRuleResponse.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 InsertTmMonitorRuleResponse} extends {@link TeaModel}
*
* <p>InsertTmMonitorRuleResponse</p>
*/
public class InsertTmMonitorRuleResponse 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 InsertTmMonitorRuleResponseBody body;
private InsertTmMonitorRuleResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static InsertTmMonitorRuleResponse 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 InsertTmMonitorRuleResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<InsertTmMonitorRuleResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(InsertTmMonitorRuleResponseBody body);
@Override
InsertTmMonitorRuleResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<InsertTmMonitorRuleResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private InsertTmMonitorRuleResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(InsertTmMonitorRuleResponse 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(InsertTmMonitorRuleResponseBody body) {
this.body = body;
return this;
}
@Override
public InsertTmMonitorRuleResponse build() {
return new InsertTmMonitorRuleResponse(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/InsertTmMonitorRuleResponseBody.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 InsertTmMonitorRuleResponseBody} extends {@link TeaModel}
*
* <p>InsertTmMonitorRuleResponseBody</p>
*/
public class InsertTmMonitorRuleResponseBody extends TeaModel {
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private InsertTmMonitorRuleResponseBody(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 InsertTmMonitorRuleResponseBody 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 InsertTmMonitorRuleResponseBody build() {
return new InsertTmMonitorRuleResponseBody(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/ListNotaryInfosRequest.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 ListNotaryInfosRequest} extends {@link RequestModel}
*
* <p>ListNotaryInfosRequest</p>
*/
public class ListNotaryInfosRequest extends Request {
@Query
@NameInMap("BizOrderNo")
private String bizOrderNo;
@Query
@NameInMap("NotaryType")
@Validation(required = true)
private Integer notaryType;
@Query
@NameInMap("PageNum")
@Validation(required = true)
private Integer pageNum;
@Query
@NameInMap("PageSize")
@Validation(required = true)
private Integer pageSize;
@Query
@NameInMap("Token")
private String token;
private ListNotaryInfosRequest(Builder builder) {
super(builder);
this.bizOrderNo = builder.bizOrderNo;
this.notaryType = builder.notaryType;
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.token = builder.token;
}
public static Builder builder() {
return new Builder();
}
public static ListNotaryInfosRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizOrderNo
*/
public String getBizOrderNo() {
return this.bizOrderNo;
}
/**
* @return notaryType
*/
public Integer getNotaryType() {
return this.notaryType;
}
/**
* @return pageNum
*/
public Integer getPageNum() {
return this.pageNum;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return token
*/
public String getToken() {
return this.token;
}
public static final class Builder extends Request.Builder<ListNotaryInfosRequest, Builder> {
private String bizOrderNo;
private Integer notaryType;
private Integer pageNum;
private Integer pageSize;
private String token;
private Builder() {
super();
}
private Builder(ListNotaryInfosRequest request) {
super(request);
this.bizOrderNo = request.bizOrderNo;
this.notaryType = request.notaryType;
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.token = request.token;
}
/**
* BizOrderNo.
*/
public Builder bizOrderNo(String bizOrderNo) {
this.putQueryParameter("BizOrderNo", bizOrderNo);
this.bizOrderNo = bizOrderNo;
return this;
}
/**
* NotaryType.
*/
public Builder notaryType(Integer notaryType) {
this.putQueryParameter("NotaryType", notaryType);
this.notaryType = notaryType;
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;
}
/**
* Token.
*/
public Builder token(String token) {
this.putQueryParameter("Token", token);
this.token = token;
return this;
}
@Override
public ListNotaryInfosRequest build() {
return new ListNotaryInfosRequest(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/ListNotaryInfosResponse.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 ListNotaryInfosResponse} extends {@link TeaModel}
*
* <p>ListNotaryInfosResponse</p>
*/
public class ListNotaryInfosResponse 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 ListNotaryInfosResponseBody body;
private ListNotaryInfosResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListNotaryInfosResponse 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 ListNotaryInfosResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListNotaryInfosResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListNotaryInfosResponseBody body);
@Override
ListNotaryInfosResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListNotaryInfosResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListNotaryInfosResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListNotaryInfosResponse 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(ListNotaryInfosResponseBody body) {
this.body = body;
return this;
}
@Override
public ListNotaryInfosResponse build() {
return new ListNotaryInfosResponse(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/ListNotaryInfosResponseBody.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 ListNotaryInfosResponseBody} extends {@link TeaModel}
*
* <p>ListNotaryInfosResponseBody</p>
*/
public class ListNotaryInfosResponseBody extends TeaModel {
@NameInMap("CurrentPageNum")
private Integer currentPageNum;
@NameInMap("Data")
private Data data;
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("NextPage")
private Boolean nextPage;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("PrePage")
private Boolean prePage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
@NameInMap("TotalItemNum")
private Integer totalItemNum;
@NameInMap("TotalPageNum")
private Integer totalPageNum;
private ListNotaryInfosResponseBody(Builder builder) {
this.currentPageNum = builder.currentPageNum;
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMsg = builder.errorMsg;
this.nextPage = builder.nextPage;
this.pageSize = builder.pageSize;
this.prePage = builder.prePage;
this.requestId = builder.requestId;
this.success = builder.success;
this.totalItemNum = builder.totalItemNum;
this.totalPageNum = builder.totalPageNum;
}
public static Builder builder() {
return new Builder();
}
public static ListNotaryInfosResponseBody create() {
return builder().build();
}
/**
* @return currentPageNum
*/
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMsg
*/
public String getErrorMsg() {
return this.errorMsg;
}
/**
* @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 success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @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 String errorCode;
private String errorMsg;
private Boolean nextPage;
private Integer pageSize;
private Boolean prePage;
private String requestId;
private Boolean success;
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;
}
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMsg.
*/
public Builder errorMsg(String errorMsg) {
this.errorMsg = errorMsg;
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;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
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 ListNotaryInfosResponseBody build() {
return new ListNotaryInfosResponseBody(this);
}
}
public static class NotaryInfo extends TeaModel {
@NameInMap("BizOrderNo")
private String bizOrderNo;
@NameInMap("GmtModified")
private Long gmtModified;
@NameInMap("NotaryFailedReason")
private String notaryFailedReason;
@NameInMap("NotaryStatus")
private Integer notaryStatus;
@NameInMap("TmClassification")
private String tmClassification;
@NameInMap("TmRegisterNo")
private String tmRegisterNo;
@NameInMap("Token")
private String token;
private NotaryInfo(Builder builder) {
this.bizOrderNo = builder.bizOrderNo;
this.gmtModified = builder.gmtModified;
this.notaryFailedReason = builder.notaryFailedReason;
this.notaryStatus = builder.notaryStatus;
this.tmClassification = builder.tmClassification;
this.tmRegisterNo = builder.tmRegisterNo;
this.token = builder.token;
}
public static Builder builder() {
return new Builder();
}
public static NotaryInfo create() {
return builder().build();
}
/**
* @return bizOrderNo
*/
public String getBizOrderNo() {
return this.bizOrderNo;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return notaryFailedReason
*/
public String getNotaryFailedReason() {
return this.notaryFailedReason;
}
/**
* @return notaryStatus
*/
public Integer getNotaryStatus() {
return this.notaryStatus;
}
/**
* @return tmClassification
*/
public String getTmClassification() {
return this.tmClassification;
}
/**
* @return tmRegisterNo
*/
public String getTmRegisterNo() {
return this.tmRegisterNo;
}
/**
* @return token
*/
public String getToken() {
return this.token;
}
public static final class Builder {
private String bizOrderNo;
private Long gmtModified;
private String notaryFailedReason;
private Integer notaryStatus;
private String tmClassification;
private String tmRegisterNo;
private String token;
/**
* BizOrderNo.
*/
public Builder bizOrderNo(String bizOrderNo) {
this.bizOrderNo = bizOrderNo;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* NotaryFailedReason.
*/
public Builder notaryFailedReason(String notaryFailedReason) {
this.notaryFailedReason = notaryFailedReason;
return this;
}
/**
* NotaryStatus.
*/
public Builder notaryStatus(Integer notaryStatus) {
this.notaryStatus = notaryStatus;
return this;
}
/**
* TmClassification.
*/
public Builder tmClassification(String tmClassification) {
this.tmClassification = tmClassification;
return this;
}
/**
* TmRegisterNo.
*/
public Builder tmRegisterNo(String tmRegisterNo) {
this.tmRegisterNo = tmRegisterNo;
return this;
}
/**
* token
*/
public Builder token(String token) {
this.token = token;
return this;
}
public NotaryInfo build() {
return new NotaryInfo(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("NotaryInfo")
private java.util.List < NotaryInfo> notaryInfo;
private Data(Builder builder) {
this.notaryInfo = builder.notaryInfo;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return notaryInfo
*/
public java.util.List < NotaryInfo> getNotaryInfo() {
return this.notaryInfo;
}
public static final class Builder {
private java.util.List < NotaryInfo> notaryInfo;
/**
* NotaryInfo.
*/
public Builder notaryInfo(java.util.List < NotaryInfo> notaryInfo) {
this.notaryInfo = notaryInfo;
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/ListNotaryOrdersRequest.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 ListNotaryOrdersRequest} extends {@link RequestModel}
*
* <p>ListNotaryOrdersRequest</p>
*/
public class ListNotaryOrdersRequest extends Request {
@Query
@NameInMap("AliyunOrderId")
private String aliyunOrderId;
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("EndOrderDate")
private Long endOrderDate;
@Query
@NameInMap("NotaryStatus")
private Integer notaryStatus;
@Query
@NameInMap("NotaryType")
private Integer notaryType;
@Query
@NameInMap("PageNum")
private Integer pageNum;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("SortByType")
private String sortByType;
@Query
@NameInMap("SortKeyType")
private Integer sortKeyType;
@Query
@NameInMap("StartOrderDate")
private Long startOrderDate;
private ListNotaryOrdersRequest(Builder builder) {
super(builder);
this.aliyunOrderId = builder.aliyunOrderId;
this.bizId = builder.bizId;
this.endOrderDate = builder.endOrderDate;
this.notaryStatus = builder.notaryStatus;
this.notaryType = builder.notaryType;
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.sortByType = builder.sortByType;
this.sortKeyType = builder.sortKeyType;
this.startOrderDate = builder.startOrderDate;
}
public static Builder builder() {
return new Builder();
}
public static ListNotaryOrdersRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aliyunOrderId
*/
public String getAliyunOrderId() {
return this.aliyunOrderId;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return endOrderDate
*/
public Long getEndOrderDate() {
return this.endOrderDate;
}
/**
* @return notaryStatus
*/
public Integer getNotaryStatus() {
return this.notaryStatus;
}
/**
* @return notaryType
*/
public Integer getNotaryType() {
return this.notaryType;
}
/**
* @return pageNum
*/
public Integer getPageNum() {
return this.pageNum;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return sortByType
*/
public String getSortByType() {
return this.sortByType;
}
/**
* @return sortKeyType
*/
public Integer getSortKeyType() {
return this.sortKeyType;
}
/**
* @return startOrderDate
*/
public Long getStartOrderDate() {
return this.startOrderDate;
}
public static final class Builder extends Request.Builder<ListNotaryOrdersRequest, Builder> {
private String aliyunOrderId;
private String bizId;
private Long endOrderDate;
private Integer notaryStatus;
private Integer notaryType;
private Integer pageNum;
private Integer pageSize;
private String sortByType;
private Integer sortKeyType;
private Long startOrderDate;
private Builder() {
super();
}
private Builder(ListNotaryOrdersRequest request) {
super(request);
this.aliyunOrderId = request.aliyunOrderId;
this.bizId = request.bizId;
this.endOrderDate = request.endOrderDate;
this.notaryStatus = request.notaryStatus;
this.notaryType = request.notaryType;
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.sortByType = request.sortByType;
this.sortKeyType = request.sortKeyType;
this.startOrderDate = request.startOrderDate;
}
/**
* AliyunOrderId.
*/
public Builder aliyunOrderId(String aliyunOrderId) {
this.putQueryParameter("AliyunOrderId", aliyunOrderId);
this.aliyunOrderId = aliyunOrderId;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* EndOrderDate.
*/
public Builder endOrderDate(Long endOrderDate) {
this.putQueryParameter("EndOrderDate", endOrderDate);
this.endOrderDate = endOrderDate;
return this;
}
/**
* NotaryStatus.
*/
public Builder notaryStatus(Integer notaryStatus) {
this.putQueryParameter("NotaryStatus", notaryStatus);
this.notaryStatus = notaryStatus;
return this;
}
/**
* NotaryType.
*/
public Builder notaryType(Integer notaryType) {
this.putQueryParameter("NotaryType", notaryType);
this.notaryType = notaryType;
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;
}
/**
* SortByType.
*/
public Builder sortByType(String sortByType) {
this.putQueryParameter("SortByType", sortByType);
this.sortByType = sortByType;
return this;
}
/**
* SortKeyType.
*/
public Builder sortKeyType(Integer sortKeyType) {
this.putQueryParameter("SortKeyType", sortKeyType);
this.sortKeyType = sortKeyType;
return this;
}
/**
* StartOrderDate.
*/
public Builder startOrderDate(Long startOrderDate) {
this.putQueryParameter("StartOrderDate", startOrderDate);
this.startOrderDate = startOrderDate;
return this;
}
@Override
public ListNotaryOrdersRequest build() {
return new ListNotaryOrdersRequest(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/ListNotaryOrdersResponse.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 ListNotaryOrdersResponse} extends {@link TeaModel}
*
* <p>ListNotaryOrdersResponse</p>
*/
public class ListNotaryOrdersResponse 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 ListNotaryOrdersResponseBody body;
private ListNotaryOrdersResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListNotaryOrdersResponse 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 ListNotaryOrdersResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListNotaryOrdersResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListNotaryOrdersResponseBody body);
@Override
ListNotaryOrdersResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListNotaryOrdersResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListNotaryOrdersResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListNotaryOrdersResponse 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(ListNotaryOrdersResponseBody body) {
this.body = body;
return this;
}
@Override
public ListNotaryOrdersResponse build() {
return new ListNotaryOrdersResponse(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/ListNotaryOrdersResponseBody.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 ListNotaryOrdersResponseBody} extends {@link TeaModel}
*
* <p>ListNotaryOrdersResponseBody</p>
*/
public class ListNotaryOrdersResponseBody extends TeaModel {
@NameInMap("CurrentPageNum")
private Integer currentPageNum;
@NameInMap("Data")
private Data data;
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("NextPage")
private Boolean nextPage;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("PrePage")
private Boolean prePage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
@NameInMap("TotalItemNum")
private Integer totalItemNum;
@NameInMap("TotalPageNum")
private Integer totalPageNum;
private ListNotaryOrdersResponseBody(Builder builder) {
this.currentPageNum = builder.currentPageNum;
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMsg = builder.errorMsg;
this.nextPage = builder.nextPage;
this.pageSize = builder.pageSize;
this.prePage = builder.prePage;
this.requestId = builder.requestId;
this.success = builder.success;
this.totalItemNum = builder.totalItemNum;
this.totalPageNum = builder.totalPageNum;
}
public static Builder builder() {
return new Builder();
}
public static ListNotaryOrdersResponseBody create() {
return builder().build();
}
/**
* @return currentPageNum
*/
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMsg
*/
public String getErrorMsg() {
return this.errorMsg;
}
/**
* @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 success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @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 String errorCode;
private String errorMsg;
private Boolean nextPage;
private Integer pageSize;
private Boolean prePage;
private String requestId;
private Boolean success;
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;
}
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMsg.
*/
public Builder errorMsg(String errorMsg) {
this.errorMsg = errorMsg;
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;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
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 ListNotaryOrdersResponseBody build() {
return new ListNotaryOrdersResponseBody(this);
}
}
public static class NotaryOrder extends TeaModel {
@NameInMap("AliyunOrderId")
private String aliyunOrderId;
@NameInMap("ApplyPostStatus")
private String applyPostStatus;
@NameInMap("BizId")
private String bizId;
@NameInMap("GmtModified")
private Long gmtModified;
@NameInMap("NotaryCertificate")
private String notaryCertificate;
@NameInMap("NotaryOrderId")
private Long notaryOrderId;
@NameInMap("NotaryPlatformName")
private String notaryPlatformName;
@NameInMap("NotaryStatus")
private Integer notaryStatus;
@NameInMap("NotaryType")
private Integer notaryType;
@NameInMap("OrderDate")
private Long orderDate;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("TmClassification")
private String tmClassification;
@NameInMap("TmImage")
private String tmImage;
@NameInMap("TmName")
private String tmName;
@NameInMap("TmRegisterNo")
private String tmRegisterNo;
private NotaryOrder(Builder builder) {
this.aliyunOrderId = builder.aliyunOrderId;
this.applyPostStatus = builder.applyPostStatus;
this.bizId = builder.bizId;
this.gmtModified = builder.gmtModified;
this.notaryCertificate = builder.notaryCertificate;
this.notaryOrderId = builder.notaryOrderId;
this.notaryPlatformName = builder.notaryPlatformName;
this.notaryStatus = builder.notaryStatus;
this.notaryType = builder.notaryType;
this.orderDate = builder.orderDate;
this.orderPrice = builder.orderPrice;
this.tmClassification = builder.tmClassification;
this.tmImage = builder.tmImage;
this.tmName = builder.tmName;
this.tmRegisterNo = builder.tmRegisterNo;
}
public static Builder builder() {
return new Builder();
}
public static NotaryOrder create() {
return builder().build();
}
/**
* @return aliyunOrderId
*/
public String getAliyunOrderId() {
return this.aliyunOrderId;
}
/**
* @return applyPostStatus
*/
public String getApplyPostStatus() {
return this.applyPostStatus;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return gmtModified
*/
public Long getGmtModified() {
return this.gmtModified;
}
/**
* @return notaryCertificate
*/
public String getNotaryCertificate() {
return this.notaryCertificate;
}
/**
* @return notaryOrderId
*/
public Long getNotaryOrderId() {
return this.notaryOrderId;
}
/**
* @return notaryPlatformName
*/
public String getNotaryPlatformName() {
return this.notaryPlatformName;
}
/**
* @return notaryStatus
*/
public Integer getNotaryStatus() {
return this.notaryStatus;
}
/**
* @return notaryType
*/
public Integer getNotaryType() {
return this.notaryType;
}
/**
* @return orderDate
*/
public Long getOrderDate() {
return this.orderDate;
}
/**
* @return orderPrice
*/
public Float getOrderPrice() {
return this.orderPrice;
}
/**
* @return tmClassification
*/
public String getTmClassification() {
return this.tmClassification;
}
/**
* @return tmImage
*/
public String getTmImage() {
return this.tmImage;
}
/**
* @return tmName
*/
public String getTmName() {
return this.tmName;
}
/**
* @return tmRegisterNo
*/
public String getTmRegisterNo() {
return this.tmRegisterNo;
}
public static final class Builder {
private String aliyunOrderId;
private String applyPostStatus;
private String bizId;
private Long gmtModified;
private String notaryCertificate;
private Long notaryOrderId;
private String notaryPlatformName;
private Integer notaryStatus;
private Integer notaryType;
private Long orderDate;
private Float orderPrice;
private String tmClassification;
private String tmImage;
private String tmName;
private String tmRegisterNo;
/**
* AliyunOrderId.
*/
public Builder aliyunOrderId(String aliyunOrderId) {
this.aliyunOrderId = aliyunOrderId;
return this;
}
/**
* ApplyPostStatus.
*/
public Builder applyPostStatus(String applyPostStatus) {
this.applyPostStatus = applyPostStatus;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* NotaryCertificate.
*/
public Builder notaryCertificate(String notaryCertificate) {
this.notaryCertificate = notaryCertificate;
return this;
}
/**
* NotaryOrderId.
*/
public Builder notaryOrderId(Long notaryOrderId) {
this.notaryOrderId = notaryOrderId;
return this;
}
/**
* NotaryPlatformName.
*/
public Builder notaryPlatformName(String notaryPlatformName) {
this.notaryPlatformName = notaryPlatformName;
return this;
}
/**
* NotaryStatus.
*/
public Builder notaryStatus(Integer notaryStatus) {
this.notaryStatus = notaryStatus;
return this;
}
/**
* NotaryType.
*/
public Builder notaryType(Integer notaryType) {
this.notaryType = notaryType;
return this;
}
/**
* OrderDate.
*/
public Builder orderDate(Long orderDate) {
this.orderDate = orderDate;
return this;
}
/**
* OrderPrice.
*/
public Builder orderPrice(Float orderPrice) {
this.orderPrice = orderPrice;
return this;
}
/**
* TmClassification.
*/
public Builder tmClassification(String tmClassification) {
this.tmClassification = tmClassification;
return this;
}
/**
* TmImage.
*/
public Builder tmImage(String tmImage) {
this.tmImage = tmImage;
return this;
}
/**
* TmName.
*/
public Builder tmName(String tmName) {
this.tmName = tmName;
return this;
}
/**
* TmRegisterNo.
*/
public Builder tmRegisterNo(String tmRegisterNo) {
this.tmRegisterNo = tmRegisterNo;
return this;
}
public NotaryOrder build() {
return new NotaryOrder(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("NotaryOrder")
private java.util.List < NotaryOrder> notaryOrder;
private Data(Builder builder) {
this.notaryOrder = builder.notaryOrder;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return notaryOrder
*/
public java.util.List < NotaryOrder> getNotaryOrder() {
return this.notaryOrder;
}
public static final class Builder {
private java.util.List < NotaryOrder> notaryOrder;
/**
* NotaryOrder.
*/
public Builder notaryOrder(java.util.List < NotaryOrder> notaryOrder) {
this.notaryOrder = notaryOrder;
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/ListTrademarkSbjKeyRequest.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 ListTrademarkSbjKeyRequest} extends {@link RequestModel}
*
* <p>ListTrademarkSbjKeyRequest</p>
*/
public class ListTrademarkSbjKeyRequest extends Request {
@Query
@NameInMap("PrincipalKey")
private String principalKey;
@Query
@NameInMap("PrincipalName")
private String principalName;
private ListTrademarkSbjKeyRequest(Builder builder) {
super(builder);
this.principalKey = builder.principalKey;
this.principalName = builder.principalName;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkSbjKeyRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return principalKey
*/
public String getPrincipalKey() {
return this.principalKey;
}
/**
* @return principalName
*/
public String getPrincipalName() {
return this.principalName;
}
public static final class Builder extends Request.Builder<ListTrademarkSbjKeyRequest, Builder> {
private String principalKey;
private String principalName;
private Builder() {
super();
}
private Builder(ListTrademarkSbjKeyRequest request) {
super(request);
this.principalKey = request.principalKey;
this.principalName = request.principalName;
}
/**
* 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;
}
@Override
public ListTrademarkSbjKeyRequest build() {
return new ListTrademarkSbjKeyRequest(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/ListTrademarkSbjKeyResponse.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 ListTrademarkSbjKeyResponse} extends {@link TeaModel}
*
* <p>ListTrademarkSbjKeyResponse</p>
*/
public class ListTrademarkSbjKeyResponse 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 ListTrademarkSbjKeyResponseBody body;
private ListTrademarkSbjKeyResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListTrademarkSbjKeyResponse 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 ListTrademarkSbjKeyResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListTrademarkSbjKeyResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListTrademarkSbjKeyResponseBody body);
@Override
ListTrademarkSbjKeyResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListTrademarkSbjKeyResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListTrademarkSbjKeyResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListTrademarkSbjKeyResponse 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(ListTrademarkSbjKeyResponseBody body) {
this.body = body;
return this;
}
@Override
public ListTrademarkSbjKeyResponse build() {
return new ListTrademarkSbjKeyResponse(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/ListTrademarkSbjKeyResponseBody.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 ListTrademarkSbjKeyResponseBody} extends {@link TeaModel}
*
* <p>ListTrademarkSbjKeyResponseBody</p>
*/
public class ListTrademarkSbjKeyResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TmSbjKeyInfo")
private java.util.List < TmSbjKeyInfo> tmSbjKeyInfo;
private ListTrademarkSbjKeyResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.tmSbjKeyInfo = builder.tmSbjKeyInfo;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkSbjKeyResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return tmSbjKeyInfo
*/
public java.util.List < TmSbjKeyInfo> getTmSbjKeyInfo() {
return this.tmSbjKeyInfo;
}
public static final class Builder {
private String requestId;
private java.util.List < TmSbjKeyInfo> tmSbjKeyInfo;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TmSbjKeyInfo.
*/
public Builder tmSbjKeyInfo(java.util.List < TmSbjKeyInfo> tmSbjKeyInfo) {
this.tmSbjKeyInfo = tmSbjKeyInfo;
return this;
}
public ListTrademarkSbjKeyResponseBody build() {
return new ListTrademarkSbjKeyResponseBody(this);
}
}
public static class TmSbjKeyInfo extends TeaModel {
@NameInMap("AgentId")
private String agentId;
@NameInMap("AgreeProt")
private String agreeProt;
@NameInMap("CertInfo")
private String certInfo;
@NameInMap("ClearData")
private String clearData;
@NameInMap("HashData")
private String hashData;
@NameInMap("KeyType")
private Integer keyType;
@NameInMap("Name")
private String name;
@NameInMap("Pin")
private String pin;
@NameInMap("PrincipalKey")
private String principalKey;
@NameInMap("PrincipalName")
private String principalName;
@NameInMap("SignCert")
private String signCert;
@NameInMap("SignData")
private String signData;
@NameInMap("StartValidDate")
private String startValidDate;
@NameInMap("SubmitSignData")
private String submitSignData;
@NameInMap("TypeCert")
private String typeCert;
@NameInMap("Username")
private String username;
@NameInMap("ValidDate")
private String validDate;
@NameInMap("tmurl")
private String tmurl;
private TmSbjKeyInfo(Builder builder) {
this.agentId = builder.agentId;
this.agreeProt = builder.agreeProt;
this.certInfo = builder.certInfo;
this.clearData = builder.clearData;
this.hashData = builder.hashData;
this.keyType = builder.keyType;
this.name = builder.name;
this.pin = builder.pin;
this.principalKey = builder.principalKey;
this.principalName = builder.principalName;
this.signCert = builder.signCert;
this.signData = builder.signData;
this.startValidDate = builder.startValidDate;
this.submitSignData = builder.submitSignData;
this.typeCert = builder.typeCert;
this.username = builder.username;
this.validDate = builder.validDate;
this.tmurl = builder.tmurl;
}
public static Builder builder() {
return new Builder();
}
public static TmSbjKeyInfo create() {
return builder().build();
}
/**
* @return agentId
*/
public String getAgentId() {
return this.agentId;
}
/**
* @return agreeProt
*/
public String getAgreeProt() {
return this.agreeProt;
}
/**
* @return certInfo
*/
public String getCertInfo() {
return this.certInfo;
}
/**
* @return clearData
*/
public String getClearData() {
return this.clearData;
}
/**
* @return hashData
*/
public String getHashData() {
return this.hashData;
}
/**
* @return keyType
*/
public Integer getKeyType() {
return this.keyType;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return pin
*/
public String getPin() {
return this.pin;
}
/**
* @return principalKey
*/
public String getPrincipalKey() {
return this.principalKey;
}
/**
* @return principalName
*/
public String getPrincipalName() {
return this.principalName;
}
/**
* @return signCert
*/
public String getSignCert() {
return this.signCert;
}
/**
* @return signData
*/
public String getSignData() {
return this.signData;
}
/**
* @return startValidDate
*/
public String getStartValidDate() {
return this.startValidDate;
}
/**
* @return submitSignData
*/
public String getSubmitSignData() {
return this.submitSignData;
}
/**
* @return typeCert
*/
public String getTypeCert() {
return this.typeCert;
}
/**
* @return username
*/
public String getUsername() {
return this.username;
}
/**
* @return validDate
*/
public String getValidDate() {
return this.validDate;
}
/**
* @return tmurl
*/
public String getTmurl() {
return this.tmurl;
}
public static final class Builder {
private String agentId;
private String agreeProt;
private String certInfo;
private String clearData;
private String hashData;
private Integer keyType;
private String name;
private String pin;
private String principalKey;
private String principalName;
private String signCert;
private String signData;
private String startValidDate;
private String submitSignData;
private String typeCert;
private String username;
private String validDate;
private String tmurl;
/**
* AgentId.
*/
public Builder agentId(String agentId) {
this.agentId = agentId;
return this;
}
/**
* AgreeProt.
*/
public Builder agreeProt(String agreeProt) {
this.agreeProt = agreeProt;
return this;
}
/**
* CertInfo.
*/
public Builder certInfo(String certInfo) {
this.certInfo = certInfo;
return this;
}
/**
* ClearData.
*/
public Builder clearData(String clearData) {
this.clearData = clearData;
return this;
}
/**
* HashData.
*/
public Builder hashData(String hashData) {
this.hashData = hashData;
return this;
}
/**
* KeyType.
*/
public Builder keyType(Integer keyType) {
this.keyType = keyType;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* Pin.
*/
public Builder pin(String pin) {
this.pin = pin;
return this;
}
/**
* PrincipalKey.
*/
public Builder principalKey(String principalKey) {
this.principalKey = principalKey;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(String principalName) {
this.principalName = principalName;
return this;
}
/**
* SignCert.
*/
public Builder signCert(String signCert) {
this.signCert = signCert;
return this;
}
/**
* SignData.
*/
public Builder signData(String signData) {
this.signData = signData;
return this;
}
/**
* StartValidDate.
*/
public Builder startValidDate(String startValidDate) {
this.startValidDate = startValidDate;
return this;
}
/**
* SubmitSignData.
*/
public Builder submitSignData(String submitSignData) {
this.submitSignData = submitSignData;
return this;
}
/**
* TypeCert.
*/
public Builder typeCert(String typeCert) {
this.typeCert = typeCert;
return this;
}
/**
* Username.
*/
public Builder username(String username) {
this.username = username;
return this;
}
/**
* ValidDate.
*/
public Builder validDate(String validDate) {
this.validDate = validDate;
return this;
}
/**
* tmurl.
*/
public Builder tmurl(String tmurl) {
this.tmurl = tmurl;
return this;
}
public TmSbjKeyInfo build() {
return new TmSbjKeyInfo(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/ModifySubmitTransferMaterailRequest.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 ModifySubmitTransferMaterailRequest} extends {@link RequestModel}
*
* <p>ModifySubmitTransferMaterailRequest</p>
*/
public class ModifySubmitTransferMaterailRequest extends Request {
@Body
@NameInMap("Addr")
private String addr;
@Query
@NameInMap("AssigneeProxy")
private String assigneeProxy;
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
@Body
@NameInMap("BuyerBusinessLicense")
private String buyerBusinessLicense;
@Query
@NameInMap("BuyerBusinessLicenseTranslation")
private String buyerBusinessLicenseTranslation;
@Body
@NameInMap("BuyerIdCard")
private String buyerIdCard;
@Body
@NameInMap("CardNo")
private String cardNo;
@Body
@NameInMap("CardType")
private String cardType;
@Body
@NameInMap("Complete")
private Boolean complete;
@Body
@NameInMap("ContactEmail")
private String contactEmail;
@Body
@NameInMap("ContactMobile")
private String contactMobile;
@Body
@NameInMap("ContactName")
private String contactName;
@Body
@NameInMap("Name")
private String name;
@Body
@NameInMap("Notarization")
private String notarization;
@Query
@NameInMap("Note")
private String note;
@Body
@NameInMap("Other")
private java.util.Map < String, ? > other;
@Body
@NameInMap("RegistrationCert")
private String registrationCert;
@Body
@NameInMap("SellerApply")
private String sellerApply;
@Body
@NameInMap("SellerBusinessLicense")
private String sellerBusinessLicense;
@Query
@NameInMap("SellerBusinessLicenseTranslation")
private String sellerBusinessLicenseTranslation;
@Body
@NameInMap("SellerIdCard")
private String sellerIdCard;
@Body
@NameInMap("SellerProxy")
private String sellerProxy;
@Query
@NameInMap("TradeMaterialFullUpdate")
private Boolean tradeMaterialFullUpdate;
private ModifySubmitTransferMaterailRequest(Builder builder) {
super(builder);
this.addr = builder.addr;
this.assigneeProxy = builder.assigneeProxy;
this.bizId = builder.bizId;
this.buyerBusinessLicense = builder.buyerBusinessLicense;
this.buyerBusinessLicenseTranslation = builder.buyerBusinessLicenseTranslation;
this.buyerIdCard = builder.buyerIdCard;
this.cardNo = builder.cardNo;
this.cardType = builder.cardType;
this.complete = builder.complete;
this.contactEmail = builder.contactEmail;
this.contactMobile = builder.contactMobile;
this.contactName = builder.contactName;
this.name = builder.name;
this.notarization = builder.notarization;
this.note = builder.note;
this.other = builder.other;
this.registrationCert = builder.registrationCert;
this.sellerApply = builder.sellerApply;
this.sellerBusinessLicense = builder.sellerBusinessLicense;
this.sellerBusinessLicenseTranslation = builder.sellerBusinessLicenseTranslation;
this.sellerIdCard = builder.sellerIdCard;
this.sellerProxy = builder.sellerProxy;
this.tradeMaterialFullUpdate = builder.tradeMaterialFullUpdate;
}
public static Builder builder() {
return new Builder();
}
public static ModifySubmitTransferMaterailRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return addr
*/
public String getAddr() {
return this.addr;
}
/**
* @return assigneeProxy
*/
public String getAssigneeProxy() {
return this.assigneeProxy;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return buyerBusinessLicense
*/
public String getBuyerBusinessLicense() {
return this.buyerBusinessLicense;
}
/**
* @return buyerBusinessLicenseTranslation
*/
public String getBuyerBusinessLicenseTranslation() {
return this.buyerBusinessLicenseTranslation;
}
/**
* @return buyerIdCard
*/
public String getBuyerIdCard() {
return this.buyerIdCard;
}
/**
* @return cardNo
*/
public String getCardNo() {
return this.cardNo;
}
/**
* @return cardType
*/
public String getCardType() {
return this.cardType;
}
/**
* @return complete
*/
public Boolean getComplete() {
return this.complete;
}
/**
* @return contactEmail
*/
public String getContactEmail() {
return this.contactEmail;
}
/**
* @return contactMobile
*/
public String getContactMobile() {
return this.contactMobile;
}
/**
* @return contactName
*/
public String getContactName() {
return this.contactName;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return notarization
*/
public String getNotarization() {
return this.notarization;
}
/**
* @return note
*/
public String getNote() {
return this.note;
}
/**
* @return other
*/
public java.util.Map < String, ? > getOther() {
return this.other;
}
/**
* @return registrationCert
*/
public String getRegistrationCert() {
return this.registrationCert;
}
/**
* @return sellerApply
*/
public String getSellerApply() {
return this.sellerApply;
}
/**
* @return sellerBusinessLicense
*/
public String getSellerBusinessLicense() {
return this.sellerBusinessLicense;
}
/**
* @return sellerBusinessLicenseTranslation
*/
public String getSellerBusinessLicenseTranslation() {
return this.sellerBusinessLicenseTranslation;
}
/**
* @return sellerIdCard
*/
public String getSellerIdCard() {
return this.sellerIdCard;
}
/**
* @return sellerProxy
*/
public String getSellerProxy() {
return this.sellerProxy;
}
/**
* @return tradeMaterialFullUpdate
*/
public Boolean getTradeMaterialFullUpdate() {
return this.tradeMaterialFullUpdate;
}
public static final class Builder extends Request.Builder<ModifySubmitTransferMaterailRequest, Builder> {
private String addr;
private String assigneeProxy;
private String bizId;
private String buyerBusinessLicense;
private String buyerBusinessLicenseTranslation;
private String buyerIdCard;
private String cardNo;
private String cardType;
private Boolean complete;
private String contactEmail;
private String contactMobile;
private String contactName;
private String name;
private String notarization;
private String note;
private java.util.Map < String, ? > other;
private String registrationCert;
private String sellerApply;
private String sellerBusinessLicense;
private String sellerBusinessLicenseTranslation;
private String sellerIdCard;
private String sellerProxy;
private Boolean tradeMaterialFullUpdate;
private Builder() {
super();
}
private Builder(ModifySubmitTransferMaterailRequest request) {
super(request);
this.addr = request.addr;
this.assigneeProxy = request.assigneeProxy;
this.bizId = request.bizId;
this.buyerBusinessLicense = request.buyerBusinessLicense;
this.buyerBusinessLicenseTranslation = request.buyerBusinessLicenseTranslation;
this.buyerIdCard = request.buyerIdCard;
this.cardNo = request.cardNo;
this.cardType = request.cardType;
this.complete = request.complete;
this.contactEmail = request.contactEmail;
this.contactMobile = request.contactMobile;
this.contactName = request.contactName;
this.name = request.name;
this.notarization = request.notarization;
this.note = request.note;
this.other = request.other;
this.registrationCert = request.registrationCert;
this.sellerApply = request.sellerApply;
this.sellerBusinessLicense = request.sellerBusinessLicense;
this.sellerBusinessLicenseTranslation = request.sellerBusinessLicenseTranslation;
this.sellerIdCard = request.sellerIdCard;
this.sellerProxy = request.sellerProxy;
this.tradeMaterialFullUpdate = request.tradeMaterialFullUpdate;
}
/**
* Addr.
*/
public Builder addr(String addr) {
this.putBodyParameter("Addr", addr);
this.addr = addr;
return this;
}
/**
* AssigneeProxy.
*/
public Builder assigneeProxy(String assigneeProxy) {
this.putQueryParameter("AssigneeProxy", assigneeProxy);
this.assigneeProxy = assigneeProxy;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* BuyerBusinessLicense.
*/
public Builder buyerBusinessLicense(String buyerBusinessLicense) {
this.putBodyParameter("BuyerBusinessLicense", buyerBusinessLicense);
this.buyerBusinessLicense = buyerBusinessLicense;
return this;
}
/**
* BuyerBusinessLicenseTranslation.
*/
public Builder buyerBusinessLicenseTranslation(String buyerBusinessLicenseTranslation) {
this.putQueryParameter("BuyerBusinessLicenseTranslation", buyerBusinessLicenseTranslation);
this.buyerBusinessLicenseTranslation = buyerBusinessLicenseTranslation;
return this;
}
/**
* BuyerIdCard.
*/
public Builder buyerIdCard(String buyerIdCard) {
this.putBodyParameter("BuyerIdCard", buyerIdCard);
this.buyerIdCard = buyerIdCard;
return this;
}
/**
* CardNo.
*/
public Builder cardNo(String cardNo) {
this.putBodyParameter("CardNo", cardNo);
this.cardNo = cardNo;
return this;
}
/**
* CardType.
*/
public Builder cardType(String cardType) {
this.putBodyParameter("CardType", cardType);
this.cardType = cardType;
return this;
}
/**
* Complete.
*/
public Builder complete(Boolean complete) {
this.putBodyParameter("Complete", complete);
this.complete = complete;
return this;
}
/**
* ContactEmail.
*/
public Builder contactEmail(String contactEmail) {
this.putBodyParameter("ContactEmail", contactEmail);
this.contactEmail = contactEmail;
return this;
}
/**
* ContactMobile.
*/
public Builder contactMobile(String contactMobile) {
this.putBodyParameter("ContactMobile", contactMobile);
this.contactMobile = contactMobile;
return this;
}
/**
* ContactName.
*/
public Builder contactName(String contactName) {
this.putBodyParameter("ContactName", contactName);
this.contactName = contactName;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.putBodyParameter("Name", name);
this.name = name;
return this;
}
/**
* Notarization.
*/
public Builder notarization(String notarization) {
this.putBodyParameter("Notarization", notarization);
this.notarization = notarization;
return this;
}
/**
* Note.
*/
public Builder note(String note) {
this.putQueryParameter("Note", note);
this.note = note;
return this;
}
/**
* Other.
*/
public Builder other(java.util.Map < String, ? > other) {
String otherShrink = shrink(other, "Other", "json");
this.putBodyParameter("Other", otherShrink);
this.other = other;
return this;
}
/**
* RegistrationCert.
*/
public Builder registrationCert(String registrationCert) {
this.putBodyParameter("RegistrationCert", registrationCert);
this.registrationCert = registrationCert;
return this;
}
/**
* SellerApply.
*/
public Builder sellerApply(String sellerApply) {
this.putBodyParameter("SellerApply", sellerApply);
this.sellerApply = sellerApply;
return this;
}
/**
* SellerBusinessLicense.
*/
public Builder sellerBusinessLicense(String sellerBusinessLicense) {
this.putBodyParameter("SellerBusinessLicense", sellerBusinessLicense);
this.sellerBusinessLicense = sellerBusinessLicense;
return this;
}
/**
* SellerBusinessLicenseTranslation.
*/
public Builder sellerBusinessLicenseTranslation(String sellerBusinessLicenseTranslation) {
this.putQueryParameter("SellerBusinessLicenseTranslation", sellerBusinessLicenseTranslation);
this.sellerBusinessLicenseTranslation = sellerBusinessLicenseTranslation;
return this;
}
/**
* SellerIdCard.
*/
public Builder sellerIdCard(String sellerIdCard) {
this.putBodyParameter("SellerIdCard", sellerIdCard);
this.sellerIdCard = sellerIdCard;
return this;
}
/**
* SellerProxy.
*/
public Builder sellerProxy(String sellerProxy) {
this.putBodyParameter("SellerProxy", sellerProxy);
this.sellerProxy = sellerProxy;
return this;
}
/**
* TradeMaterialFullUpdate.
*/
public Builder tradeMaterialFullUpdate(Boolean tradeMaterialFullUpdate) {
this.putQueryParameter("TradeMaterialFullUpdate", tradeMaterialFullUpdate);
this.tradeMaterialFullUpdate = tradeMaterialFullUpdate;
return this;
}
@Override
public ModifySubmitTransferMaterailRequest build() {
return new ModifySubmitTransferMaterailRequest(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/ModifySubmitTransferMaterailResponse.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 ModifySubmitTransferMaterailResponse} extends {@link TeaModel}
*
* <p>ModifySubmitTransferMaterailResponse</p>
*/
public class ModifySubmitTransferMaterailResponse 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 ModifySubmitTransferMaterailResponseBody body;
private ModifySubmitTransferMaterailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ModifySubmitTransferMaterailResponse 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 ModifySubmitTransferMaterailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ModifySubmitTransferMaterailResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ModifySubmitTransferMaterailResponseBody body);
@Override
ModifySubmitTransferMaterailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ModifySubmitTransferMaterailResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ModifySubmitTransferMaterailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ModifySubmitTransferMaterailResponse 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(ModifySubmitTransferMaterailResponseBody body) {
this.body = body;
return this;
}
@Override
public ModifySubmitTransferMaterailResponse build() {
return new ModifySubmitTransferMaterailResponse(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/ModifySubmitTransferMaterailResponseBody.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 ModifySubmitTransferMaterailResponseBody} extends {@link TeaModel}
*
* <p>ModifySubmitTransferMaterailResponseBody</p>
*/
public class ModifySubmitTransferMaterailResponseBody extends TeaModel {
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private ModifySubmitTransferMaterailResponseBody(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 ModifySubmitTransferMaterailResponseBody 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 ModifySubmitTransferMaterailResponseBody build() {
return new ModifySubmitTransferMaterailResponseBody(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/OperateProduceRequest.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 OperateProduceRequest} extends {@link RequestModel}
*
* <p>OperateProduceRequest</p>
*/
public class OperateProduceRequest extends Request {
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("BizType")
private String bizType;
@Query
@NameInMap("ExtMap")
private String extMap;
@Query
@NameInMap("OperateType")
private String operateType;
private OperateProduceRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
this.bizType = builder.bizType;
this.extMap = builder.extMap;
this.operateType = builder.operateType;
}
public static Builder builder() {
return new Builder();
}
public static OperateProduceRequest 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 extMap
*/
public String getExtMap() {
return this.extMap;
}
/**
* @return operateType
*/
public String getOperateType() {
return this.operateType;
}
public static final class Builder extends Request.Builder<OperateProduceRequest, Builder> {
private String bizId;
private String bizType;
private String extMap;
private String operateType;
private Builder() {
super();
}
private Builder(OperateProduceRequest request) {
super(request);
this.bizId = request.bizId;
this.bizType = request.bizType;
this.extMap = request.extMap;
this.operateType = request.operateType;
}
/**
* 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;
}
/**
* ExtMap.
*/
public Builder extMap(String extMap) {
this.putQueryParameter("ExtMap", extMap);
this.extMap = extMap;
return this;
}
/**
* OperateType.
*/
public Builder operateType(String operateType) {
this.putQueryParameter("OperateType", operateType);
this.operateType = operateType;
return this;
}
@Override
public OperateProduceRequest build() {
return new OperateProduceRequest(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/OperateProduceResponse.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 OperateProduceResponse} extends {@link TeaModel}
*
* <p>OperateProduceResponse</p>
*/
public class OperateProduceResponse 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 OperateProduceResponseBody body;
private OperateProduceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static OperateProduceResponse 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 OperateProduceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<OperateProduceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(OperateProduceResponseBody body);
@Override
OperateProduceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<OperateProduceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private OperateProduceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(OperateProduceResponse 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(OperateProduceResponseBody body) {
this.body = body;
return this;
}
@Override
public OperateProduceResponse build() {
return new OperateProduceResponse(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/OperateProduceResponseBody.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 OperateProduceResponseBody} extends {@link TeaModel}
*
* <p>OperateProduceResponseBody</p>
*/
public class OperateProduceResponseBody extends TeaModel {
@NameInMap("requestId")
private String requestId;
private OperateProduceResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static OperateProduceResponseBody 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 OperateProduceResponseBody build() {
return new OperateProduceResponseBody(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/PartnerUpdateTrademarkNameRequest.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 PartnerUpdateTrademarkNameRequest} extends {@link RequestModel}
*
* <p>PartnerUpdateTrademarkNameRequest</p>
*/
public class PartnerUpdateTrademarkNameRequest extends Request {
@Query
@NameInMap("AliyunKp")
private String aliyunKp;
@Query
@NameInMap("Bid")
private String bid;
@Body
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("CallerParentId")
private Long callerParentId;
@Query
@NameInMap("CallerType")
private String callerType;
@Body
@NameInMap("EventSceneType")
private Long eventSceneType;
@Body
@NameInMap("IntentionBizId")
private String intentionBizId;
@Body
@NameInMap("TmComment")
private String tmComment;
@Body
@NameInMap("TmIcon")
private String tmIcon;
@Body
@NameInMap("TmName")
private String tmName;
@Query
@NameInMap("Type")
private Integer type;
private PartnerUpdateTrademarkNameRequest(Builder builder) {
super(builder);
this.aliyunKp = builder.aliyunKp;
this.bid = builder.bid;
this.bizId = builder.bizId;
this.callerParentId = builder.callerParentId;
this.callerType = builder.callerType;
this.eventSceneType = builder.eventSceneType;
this.intentionBizId = builder.intentionBizId;
this.tmComment = builder.tmComment;
this.tmIcon = builder.tmIcon;
this.tmName = builder.tmName;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static PartnerUpdateTrademarkNameRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aliyunKp
*/
public String getAliyunKp() {
return this.aliyunKp;
}
/**
* @return bid
*/
public String getBid() {
return this.bid;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return callerParentId
*/
public Long getCallerParentId() {
return this.callerParentId;
}
/**
* @return callerType
*/
public String getCallerType() {
return this.callerType;
}
/**
* @return eventSceneType
*/
public Long getEventSceneType() {
return this.eventSceneType;
}
/**
* @return intentionBizId
*/
public String getIntentionBizId() {
return this.intentionBizId;
}
/**
* @return tmComment
*/
public String getTmComment() {
return this.tmComment;
}
/**
* @return tmIcon
*/
public String getTmIcon() {
return this.tmIcon;
}
/**
* @return tmName
*/
public String getTmName() {
return this.tmName;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
public static final class Builder extends Request.Builder<PartnerUpdateTrademarkNameRequest, Builder> {
private String aliyunKp;
private String bid;
private String bizId;
private Long callerParentId;
private String callerType;
private Long eventSceneType;
private String intentionBizId;
private String tmComment;
private String tmIcon;
private String tmName;
private Integer type;
private Builder() {
super();
}
private Builder(PartnerUpdateTrademarkNameRequest request) {
super(request);
this.aliyunKp = request.aliyunKp;
this.bid = request.bid;
this.bizId = request.bizId;
this.callerParentId = request.callerParentId;
this.callerType = request.callerType;
this.eventSceneType = request.eventSceneType;
this.intentionBizId = request.intentionBizId;
this.tmComment = request.tmComment;
this.tmIcon = request.tmIcon;
this.tmName = request.tmName;
this.type = request.type;
}
/**
* AliyunKp.
*/
public Builder aliyunKp(String aliyunKp) {
this.putQueryParameter("AliyunKp", aliyunKp);
this.aliyunKp = aliyunKp;
return this;
}
/**
* Bid.
*/
public Builder bid(String bid) {
this.putQueryParameter("Bid", bid);
this.bid = bid;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putBodyParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* CallerParentId.
*/
public Builder callerParentId(Long callerParentId) {
this.putQueryParameter("CallerParentId", callerParentId);
this.callerParentId = callerParentId;
return this;
}
/**
* CallerType.
*/
public Builder callerType(String callerType) {
this.putQueryParameter("CallerType", callerType);
this.callerType = callerType;
return this;
}
/**
* EventSceneType.
*/
public Builder eventSceneType(Long eventSceneType) {
this.putBodyParameter("EventSceneType", eventSceneType);
this.eventSceneType = eventSceneType;
return this;
}
/**
* IntentionBizId.
*/
public Builder intentionBizId(String intentionBizId) {
this.putBodyParameter("IntentionBizId", intentionBizId);
this.intentionBizId = intentionBizId;
return this;
}
/**
* TmComment.
*/
public Builder tmComment(String tmComment) {
this.putBodyParameter("TmComment", tmComment);
this.tmComment = tmComment;
return this;
}
/**
* TmIcon.
*/
public Builder tmIcon(String tmIcon) {
this.putBodyParameter("TmIcon", tmIcon);
this.tmIcon = tmIcon;
return this;
}
/**
* TmName.
*/
public Builder tmName(String tmName) {
this.putBodyParameter("TmName", tmName);
this.tmName = tmName;
return this;
}
/**
* Type.
*/
public Builder type(Integer type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public PartnerUpdateTrademarkNameRequest build() {
return new PartnerUpdateTrademarkNameRequest(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/PartnerUpdateTrademarkNameResponse.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 PartnerUpdateTrademarkNameResponse} extends {@link TeaModel}
*
* <p>PartnerUpdateTrademarkNameResponse</p>
*/
public class PartnerUpdateTrademarkNameResponse 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 PartnerUpdateTrademarkNameResponseBody body;
private PartnerUpdateTrademarkNameResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static PartnerUpdateTrademarkNameResponse 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 PartnerUpdateTrademarkNameResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<PartnerUpdateTrademarkNameResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(PartnerUpdateTrademarkNameResponseBody body);
@Override
PartnerUpdateTrademarkNameResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<PartnerUpdateTrademarkNameResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private PartnerUpdateTrademarkNameResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(PartnerUpdateTrademarkNameResponse 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(PartnerUpdateTrademarkNameResponseBody body) {
this.body = body;
return this;
}
@Override
public PartnerUpdateTrademarkNameResponse build() {
return new PartnerUpdateTrademarkNameResponse(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/PartnerUpdateTrademarkNameResponseBody.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 PartnerUpdateTrademarkNameResponseBody} extends {@link TeaModel}
*
* <p>PartnerUpdateTrademarkNameResponseBody</p>
*/
public class PartnerUpdateTrademarkNameResponseBody extends TeaModel {
@NameInMap("AllowRetry")
private Boolean allowRetry;
@NameInMap("AppName")
private String appName;
@NameInMap("DynamicCode")
private String dynamicCode;
@NameInMap("DynamicMessage")
private String dynamicMessage;
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("HttpStatusCode")
private Integer httpStatusCode;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private PartnerUpdateTrademarkNameResponseBody(Builder builder) {
this.allowRetry = builder.allowRetry;
this.appName = builder.appName;
this.dynamicCode = builder.dynamicCode;
this.dynamicMessage = builder.dynamicMessage;
this.errorCode = builder.errorCode;
this.errorMsg = builder.errorMsg;
this.httpStatusCode = builder.httpStatusCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static PartnerUpdateTrademarkNameResponseBody create() {
return builder().build();
}
/**
* @return allowRetry
*/
public Boolean getAllowRetry() {
return this.allowRetry;
}
/**
* @return appName
*/
public String getAppName() {
return this.appName;
}
/**
* @return dynamicCode
*/
public String getDynamicCode() {
return this.dynamicCode;
}
/**
* @return dynamicMessage
*/
public String getDynamicMessage() {
return this.dynamicMessage;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMsg
*/
public String getErrorMsg() {
return this.errorMsg;
}
/**
* @return httpStatusCode
*/
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private Boolean allowRetry;
private String appName;
private String dynamicCode;
private String dynamicMessage;
private String errorCode;
private String errorMsg;
private Integer httpStatusCode;
private String requestId;
private Boolean success;
/**
* AllowRetry.
*/
public Builder allowRetry(Boolean allowRetry) {
this.allowRetry = allowRetry;
return this;
}
/**
* AppName.
*/
public Builder appName(String appName) {
this.appName = appName;
return this;
}
/**
* DynamicCode.
*/
public Builder dynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
return this;
}
/**
* DynamicMessage.
*/
public Builder dynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
return this;
}
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMsg.
*/
public Builder errorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
/**
* HttpStatusCode.
*/
public Builder httpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
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 PartnerUpdateTrademarkNameResponseBody build() {
return new PartnerUpdateTrademarkNameResponseBody(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/QueryCommunicationLogsRequest.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 QueryCommunicationLogsRequest} extends {@link RequestModel}
*
* <p>QueryCommunicationLogsRequest</p>
*/
public class QueryCommunicationLogsRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
@Query
@NameInMap("PageNum")
private Integer pageNum;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("Type")
private Integer type;
private QueryCommunicationLogsRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static QueryCommunicationLogsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return pageNum
*/
public Integer getPageNum() {
return this.pageNum;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
public static final class Builder extends Request.Builder<QueryCommunicationLogsRequest, Builder> {
private String bizId;
private Integer pageNum;
private Integer pageSize;
private Integer type;
private Builder() {
super();
}
private Builder(QueryCommunicationLogsRequest request) {
super(request);
this.bizId = request.bizId;
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.type = request.type;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
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;
}
/**
* Type.
*/
public Builder type(Integer type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public QueryCommunicationLogsRequest build() {
return new QueryCommunicationLogsRequest(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/QueryCommunicationLogsResponse.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 QueryCommunicationLogsResponse} extends {@link TeaModel}
*
* <p>QueryCommunicationLogsResponse</p>
*/
public class QueryCommunicationLogsResponse 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 QueryCommunicationLogsResponseBody body;
private QueryCommunicationLogsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryCommunicationLogsResponse 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 QueryCommunicationLogsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryCommunicationLogsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryCommunicationLogsResponseBody body);
@Override
QueryCommunicationLogsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryCommunicationLogsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryCommunicationLogsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryCommunicationLogsResponse 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(QueryCommunicationLogsResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryCommunicationLogsResponse build() {
return new QueryCommunicationLogsResponse(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/QueryCommunicationLogsResponseBody.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 QueryCommunicationLogsResponseBody} extends {@link TeaModel}
*
* <p>QueryCommunicationLogsResponseBody</p>
*/
public class QueryCommunicationLogsResponseBody extends TeaModel {
@NameInMap("Data")
private Data data;
@NameInMap("RequestId")
private String requestId;
private QueryCommunicationLogsResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static QueryCommunicationLogsResponseBody 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 QueryCommunicationLogsResponseBody build() {
return new QueryCommunicationLogsResponseBody(this);
}
}
public static class TaskList extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("Note")
private String note;
@NameInMap("PartnerCode")
private String partnerCode;
@NameInMap("UpdateTime")
private Long updateTime;
private TaskList(Builder builder) {
this.bizId = builder.bizId;
this.createTime = builder.createTime;
this.note = builder.note;
this.partnerCode = builder.partnerCode;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static TaskList create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return note
*/
public String getNote() {
return this.note;
}
/**
* @return partnerCode
*/
public String getPartnerCode() {
return this.partnerCode;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String bizId;
private Long createTime;
private String note;
private String partnerCode;
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;
}
/**
* Note.
*/
public Builder note(String note) {
this.note = note;
return this;
}
/**
* PartnerCode.
*/
public Builder partnerCode(String partnerCode) {
this.partnerCode = partnerCode;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
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/QueryCredentialsInfoRequest.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 QueryCredentialsInfoRequest} extends {@link RequestModel}
*
* <p>QueryCredentialsInfoRequest</p>
*/
public class QueryCredentialsInfoRequest extends Request {
@Query
@NameInMap("CompanyName")
private String companyName;
@Body
@NameInMap("MaterialType")
@Validation(required = true)
private String materialType;
@Body
@NameInMap("OssKey")
private String ossKey;
private QueryCredentialsInfoRequest(Builder builder) {
super(builder);
this.companyName = builder.companyName;
this.materialType = builder.materialType;
this.ossKey = builder.ossKey;
}
public static Builder builder() {
return new Builder();
}
public static QueryCredentialsInfoRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return companyName
*/
public String getCompanyName() {
return this.companyName;
}
/**
* @return materialType
*/
public String getMaterialType() {
return this.materialType;
}
/**
* @return ossKey
*/
public String getOssKey() {
return this.ossKey;
}
public static final class Builder extends Request.Builder<QueryCredentialsInfoRequest, Builder> {
private String companyName;
private String materialType;
private String ossKey;
private Builder() {
super();
}
private Builder(QueryCredentialsInfoRequest request) {
super(request);
this.companyName = request.companyName;
this.materialType = request.materialType;
this.ossKey = request.ossKey;
}
/**
* CompanyName.
*/
public Builder companyName(String companyName) {
this.putQueryParameter("CompanyName", companyName);
this.companyName = companyName;
return this;
}
/**
* MaterialType.
*/
public Builder materialType(String materialType) {
this.putBodyParameter("MaterialType", materialType);
this.materialType = materialType;
return this;
}
/**
* OssKey.
*/
public Builder ossKey(String ossKey) {
this.putBodyParameter("OssKey", ossKey);
this.ossKey = ossKey;
return this;
}
@Override
public QueryCredentialsInfoRequest build() {
return new QueryCredentialsInfoRequest(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/QueryCredentialsInfoResponse.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 QueryCredentialsInfoResponse} extends {@link TeaModel}
*
* <p>QueryCredentialsInfoResponse</p>
*/
public class QueryCredentialsInfoResponse 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 QueryCredentialsInfoResponseBody body;
private QueryCredentialsInfoResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryCredentialsInfoResponse 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 QueryCredentialsInfoResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryCredentialsInfoResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryCredentialsInfoResponseBody body);
@Override
QueryCredentialsInfoResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryCredentialsInfoResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryCredentialsInfoResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryCredentialsInfoResponse 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(QueryCredentialsInfoResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryCredentialsInfoResponse build() {
return new QueryCredentialsInfoResponse(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/QueryCredentialsInfoResponseBody.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 QueryCredentialsInfoResponseBody} extends {@link TeaModel}
*
* <p>QueryCredentialsInfoResponseBody</p>
*/
public class QueryCredentialsInfoResponseBody extends TeaModel {
@NameInMap("CredentialsInfo")
private CredentialsInfo credentialsInfo;
@NameInMap("RequestId")
private String requestId;
private QueryCredentialsInfoResponseBody(Builder builder) {
this.credentialsInfo = builder.credentialsInfo;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static QueryCredentialsInfoResponseBody create() {
return builder().build();
}
/**
* @return credentialsInfo
*/
public CredentialsInfo getCredentialsInfo() {
return this.credentialsInfo;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private CredentialsInfo credentialsInfo;
private String requestId;
/**
* CredentialsInfo.
*/
public Builder credentialsInfo(CredentialsInfo credentialsInfo) {
this.credentialsInfo = credentialsInfo;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public QueryCredentialsInfoResponseBody build() {
return new QueryCredentialsInfoResponseBody(this);
}
}
public static class CredentialsInfo extends TeaModel {
@NameInMap("Address")
private String address;
@NameInMap("CardNumber")
private String cardNumber;
@NameInMap("CompanyName")
private String companyName;
@NameInMap("PersonName")
private String personName;
@NameInMap("Province")
private String province;
private CredentialsInfo(Builder builder) {
this.address = builder.address;
this.cardNumber = builder.cardNumber;
this.companyName = builder.companyName;
this.personName = builder.personName;
this.province = builder.province;
}
public static Builder builder() {
return new Builder();
}
public static CredentialsInfo create() {
return builder().build();
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @return companyName
*/
public String getCompanyName() {
return this.companyName;
}
/**
* @return personName
*/
public String getPersonName() {
return this.personName;
}
/**
* @return province
*/
public String getProvince() {
return this.province;
}
public static final class Builder {
private String address;
private String cardNumber;
private String companyName;
private String personName;
private String province;
/**
* Address.
*/
public Builder address(String address) {
this.address = address;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
return this;
}
/**
* CompanyName.
*/
public Builder companyName(String companyName) {
this.companyName = companyName;
return this;
}
/**
* PersonName.
*/
public Builder personName(String personName) {
this.personName = personName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.province = province;
return this;
}
public CredentialsInfo build() {
return new CredentialsInfo(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/QueryExtensionAttributeRequest.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 QueryExtensionAttributeRequest} extends {@link RequestModel}
*
* <p>QueryExtensionAttributeRequest</p>
*/
public class QueryExtensionAttributeRequest extends Request {
@Query
@NameInMap("AttributeKey")
private String attributeKey;
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private QueryExtensionAttributeRequest(Builder builder) {
super(builder);
this.attributeKey = builder.attributeKey;
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static QueryExtensionAttributeRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return attributeKey
*/
public String getAttributeKey() {
return this.attributeKey;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
public static final class Builder extends Request.Builder<QueryExtensionAttributeRequest, Builder> {
private String attributeKey;
private String bizId;
private Builder() {
super();
}
private Builder(QueryExtensionAttributeRequest request) {
super(request);
this.attributeKey = request.attributeKey;
this.bizId = request.bizId;
}
/**
* AttributeKey.
*/
public Builder attributeKey(String attributeKey) {
this.putQueryParameter("AttributeKey", attributeKey);
this.attributeKey = attributeKey;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public QueryExtensionAttributeRequest build() {
return new QueryExtensionAttributeRequest(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/QueryExtensionAttributeResponse.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 QueryExtensionAttributeResponse} extends {@link TeaModel}
*
* <p>QueryExtensionAttributeResponse</p>
*/
public class QueryExtensionAttributeResponse 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 QueryExtensionAttributeResponseBody body;
private QueryExtensionAttributeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryExtensionAttributeResponse 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 QueryExtensionAttributeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryExtensionAttributeResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryExtensionAttributeResponseBody body);
@Override
QueryExtensionAttributeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryExtensionAttributeResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryExtensionAttributeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryExtensionAttributeResponse 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(QueryExtensionAttributeResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryExtensionAttributeResponse build() {
return new QueryExtensionAttributeResponse(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/QueryExtensionAttributeResponseBody.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 QueryExtensionAttributeResponseBody} extends {@link TeaModel}
*
* <p>QueryExtensionAttributeResponseBody</p>
*/
public class QueryExtensionAttributeResponseBody extends TeaModel {
@NameInMap("AttributeValue")
private String attributeValue;
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private QueryExtensionAttributeResponseBody(Builder builder) {
this.attributeValue = builder.attributeValue;
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 QueryExtensionAttributeResponseBody create() {
return builder().build();
}
/**
* @return attributeValue
*/
public String getAttributeValue() {
return this.attributeValue;
}
/**
* @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 attributeValue;
private String code;
private String message;
private String requestId;
private Boolean success;
/**
* AttributeValue.
*/
public Builder attributeValue(String attributeValue) {
this.attributeValue = attributeValue;
return this;
}
/**
* 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 QueryExtensionAttributeResponseBody build() {
return new QueryExtensionAttributeResponseBody(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/QueryIntentionDetailRequest.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 QueryIntentionDetailRequest} extends {@link RequestModel}
*
* <p>QueryIntentionDetailRequest</p>
*/
public class QueryIntentionDetailRequest extends Request {
@Query
@NameInMap("BizId")
private String bizId;
private QueryIntentionDetailRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static QueryIntentionDetailRequest 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<QueryIntentionDetailRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(QueryIntentionDetailRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public QueryIntentionDetailRequest build() {
return new QueryIntentionDetailRequest(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/QueryIntentionDetailResponse.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 QueryIntentionDetailResponse} extends {@link TeaModel}
*
* <p>QueryIntentionDetailResponse</p>
*/
public class QueryIntentionDetailResponse 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 QueryIntentionDetailResponseBody body;
private QueryIntentionDetailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryIntentionDetailResponse 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 QueryIntentionDetailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryIntentionDetailResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryIntentionDetailResponseBody body);
@Override
QueryIntentionDetailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryIntentionDetailResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryIntentionDetailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryIntentionDetailResponse 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(QueryIntentionDetailResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryIntentionDetailResponse build() {
return new QueryIntentionDetailResponse(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/QueryIntentionDetailResponseBody.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 QueryIntentionDetailResponseBody} extends {@link TeaModel}
*
* <p>QueryIntentionDetailResponseBody</p>
*/
public class QueryIntentionDetailResponseBody extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("Classification")
private String classification;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("Description")
private String description;
@NameInMap("Mobile")
private String mobile;
@NameInMap("PartnerMobile")
private String partnerMobile;
@NameInMap("RegisterNumber")
private String registerNumber;
@NameInMap("RelationBizId")
private String relationBizId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Status")
private Integer status;
@NameInMap("Type")
private Integer type;
@NameInMap("UpdateTime")
private Long updateTime;
@NameInMap("UserId")
private String userId;
@NameInMap("UserName")
private String userName;
private QueryIntentionDetailResponseBody(Builder builder) {
this.bizId = builder.bizId;
this.classification = builder.classification;
this.createTime = builder.createTime;
this.description = builder.description;
this.mobile = builder.mobile;
this.partnerMobile = builder.partnerMobile;
this.registerNumber = builder.registerNumber;
this.relationBizId = builder.relationBizId;
this.requestId = builder.requestId;
this.status = builder.status;
this.type = builder.type;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
this.userName = builder.userName;
}
public static Builder builder() {
return new Builder();
}
public static QueryIntentionDetailResponseBody create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return classification
*/
public String getClassification() {
return this.classification;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return mobile
*/
public String getMobile() {
return this.mobile;
}
/**
* @return partnerMobile
*/
public String getPartnerMobile() {
return this.partnerMobile;
}
/**
* @return registerNumber
*/
public String getRegisterNumber() {
return this.registerNumber;
}
/**
* @return relationBizId
*/
public String getRelationBizId() {
return this.relationBizId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return status
*/
public Integer getStatus() {
return this.status;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
/**
* @return userName
*/
public String getUserName() {
return this.userName;
}
public static final class Builder {
private String bizId;
private String classification;
private Long createTime;
private String description;
private String mobile;
private String partnerMobile;
private String registerNumber;
private String relationBizId;
private String requestId;
private Integer status;
private Integer type;
private Long updateTime;
private String userId;
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;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* Mobile.
*/
public Builder mobile(String mobile) {
this.mobile = mobile;
return this;
}
/**
* PartnerMobile.
*/
public Builder partnerMobile(String partnerMobile) {
this.partnerMobile = partnerMobile;
return this;
}
/**
* RegisterNumber.
*/
public Builder registerNumber(String registerNumber) {
this.registerNumber = registerNumber;
return this;
}
/**
* RelationBizId.
*/
public Builder relationBizId(String relationBizId) {
this.relationBizId = relationBizId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Status.
*/
public Builder status(Integer status) {
this.status = status;
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;
}
/**
* UserName.
*/
public Builder userName(String userName) {
this.userName = userName;
return this;
}
public QueryIntentionDetailResponseBody build() {
return new QueryIntentionDetailResponseBody(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/QueryIntentionListRequest.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 QueryIntentionListRequest} extends {@link RequestModel}
*
* <p>QueryIntentionListRequest</p>
*/
public class QueryIntentionListRequest extends Request {
@Query
@NameInMap("PageNum")
private Integer pageNum;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("SortFiled")
private String sortFiled;
@Query
@NameInMap("SortOrder")
private String sortOrder;
@Query
@NameInMap("Status")
private Integer status;
@Query
@NameInMap("Type")
private Integer type;
private QueryIntentionListRequest(Builder builder) {
super(builder);
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.sortFiled = builder.sortFiled;
this.sortOrder = builder.sortOrder;
this.status = builder.status;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static QueryIntentionListRequest 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;
}
/**
* @return sortFiled
*/
public String getSortFiled() {
return this.sortFiled;
}
/**
* @return sortOrder
*/
public String getSortOrder() {
return this.sortOrder;
}
/**
* @return status
*/
public Integer getStatus() {
return this.status;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
public static final class Builder extends Request.Builder<QueryIntentionListRequest, Builder> {
private Integer pageNum;
private Integer pageSize;
private String sortFiled;
private String sortOrder;
private Integer status;
private Integer type;
private Builder() {
super();
}
private Builder(QueryIntentionListRequest request) {
super(request);
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.sortFiled = request.sortFiled;
this.sortOrder = request.sortOrder;
this.status = request.status;
this.type = request.type;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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 QueryIntentionListRequest build() {
return new QueryIntentionListRequest(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/QueryIntentionListResponse.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 QueryIntentionListResponse} extends {@link TeaModel}
*
* <p>QueryIntentionListResponse</p>
*/
public class QueryIntentionListResponse 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 QueryIntentionListResponseBody body;
private QueryIntentionListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryIntentionListResponse 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 QueryIntentionListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryIntentionListResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryIntentionListResponseBody body);
@Override
QueryIntentionListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryIntentionListResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryIntentionListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryIntentionListResponse 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(QueryIntentionListResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryIntentionListResponse build() {
return new QueryIntentionListResponse(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/QueryIntentionListResponseBody.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 QueryIntentionListResponseBody} extends {@link TeaModel}
*
* <p>QueryIntentionListResponseBody</p>
*/
public class QueryIntentionListResponseBody 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 QueryIntentionListResponseBody(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 QueryIntentionListResponseBody 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 QueryIntentionListResponseBody build() {
return new QueryIntentionListResponseBody(this);
}
}
public static class Intention extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("Classification")
private String classification;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("Description")
private String description;
@NameInMap("RegisterNumber")
private String registerNumber;
@NameInMap("Status")
private Integer status;
@NameInMap("Type")
private Integer type;
@NameInMap("UpdateTime")
private Long updateTime;
@NameInMap("UserId")
private String userId;
private Intention(Builder builder) {
this.bizId = builder.bizId;
this.classification = builder.classification;
this.createTime = builder.createTime;
this.description = builder.description;
this.registerNumber = builder.registerNumber;
this.status = builder.status;
this.type = builder.type;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static Intention create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return classification
*/
public String getClassification() {
return this.classification;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @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 updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder {
private String bizId;
private String classification;
private Long createTime;
private String description;
private String registerNumber;
private Integer status;
private Integer type;
private Long updateTime;
private String userId;
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* Classification.
*/
public Builder classification(String classification) {
this.classification = classification;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
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;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.userId = userId;
return this;
}
public Intention build() {
return new Intention(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("Intention")
private java.util.List < Intention> intention;
private Data(Builder builder) {
this.intention = builder.intention;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return intention
*/
public java.util.List < Intention> getIntention() {
return this.intention;
}
public static final class Builder {
private java.util.List < Intention> intention;
/**
* Intention.
*/
public Builder intention(java.util.List < Intention> intention) {
this.intention = intention;
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/QueryIntentionOwnerRequest.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 QueryIntentionOwnerRequest} extends {@link RequestModel}
*
* <p>QueryIntentionOwnerRequest</p>
*/
public class QueryIntentionOwnerRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private QueryIntentionOwnerRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static QueryIntentionOwnerRequest 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<QueryIntentionOwnerRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(QueryIntentionOwnerRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public QueryIntentionOwnerRequest build() {
return new QueryIntentionOwnerRequest(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/QueryIntentionOwnerResponse.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 QueryIntentionOwnerResponse} extends {@link TeaModel}
*
* <p>QueryIntentionOwnerResponse</p>
*/
public class QueryIntentionOwnerResponse 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 QueryIntentionOwnerResponseBody body;
private QueryIntentionOwnerResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryIntentionOwnerResponse 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 QueryIntentionOwnerResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryIntentionOwnerResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryIntentionOwnerResponseBody body);
@Override
QueryIntentionOwnerResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryIntentionOwnerResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryIntentionOwnerResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryIntentionOwnerResponse 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(QueryIntentionOwnerResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryIntentionOwnerResponse build() {
return new QueryIntentionOwnerResponse(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/QueryIntentionOwnerResponseBody.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 QueryIntentionOwnerResponseBody} extends {@link TeaModel}
*
* <p>QueryIntentionOwnerResponseBody</p>
*/
public class QueryIntentionOwnerResponseBody extends TeaModel {
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMsg")
private String errorMsg;
@NameInMap("Module")
private Module module;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private QueryIntentionOwnerResponseBody(Builder builder) {
this.errorCode = builder.errorCode;
this.errorMsg = builder.errorMsg;
this.module = builder.module;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static QueryIntentionOwnerResponseBody create() {
return builder().build();
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMsg
*/
public String getErrorMsg() {
return this.errorMsg;
}
/**
* @return module
*/
public Module getModule() {
return this.module;
}
/**
* @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 Module module;
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;
}
/**
* Module.
*/
public Builder module(Module module) {
this.module = module;
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 QueryIntentionOwnerResponseBody build() {
return new QueryIntentionOwnerResponseBody(this);
}
}
public static class Module extends TeaModel {
@NameInMap("OwnerId")
private Float ownerId;
@NameInMap("OwnerName")
private String ownerName;
private Module(Builder builder) {
this.ownerId = builder.ownerId;
this.ownerName = builder.ownerName;
}
public static Builder builder() {
return new Builder();
}
public static Module create() {
return builder().build();
}
/**
* @return ownerId
*/
public Float getOwnerId() {
return this.ownerId;
}
/**
* @return ownerName
*/
public String getOwnerName() {
return this.ownerName;
}
public static final class Builder {
private Float ownerId;
private String ownerName;
/**
* OwnerId.
*/
public Builder ownerId(Float ownerId) {
this.ownerId = ownerId;
return this;
}
/**
* OwnerName.
*/
public Builder ownerName(String ownerName) {
this.ownerName = ownerName;
return this;
}
public Module build() {
return new Module(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/QueryIntentionPriceRequest.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 QueryIntentionPriceRequest} extends {@link RequestModel}
*
* <p>QueryIntentionPriceRequest</p>
*/
public class QueryIntentionPriceRequest extends Request {
@Query
@NameInMap("Channel")
private String channel;
@Query
@NameInMap("IntentionBizId")
@Validation(required = true)
private String intentionBizId;
private QueryIntentionPriceRequest(Builder builder) {
super(builder);
this.channel = builder.channel;
this.intentionBizId = builder.intentionBizId;
}
public static Builder builder() {
return new Builder();
}
public static QueryIntentionPriceRequest 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;
}
public static final class Builder extends Request.Builder<QueryIntentionPriceRequest, Builder> {
private String channel;
private String intentionBizId;
private Builder() {
super();
}
private Builder(QueryIntentionPriceRequest request) {
super(request);
this.channel = request.channel;
this.intentionBizId = request.intentionBizId;
}
/**
* 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;
}
@Override
public QueryIntentionPriceRequest build() {
return new QueryIntentionPriceRequest(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/QueryIntentionPriceResponse.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 QueryIntentionPriceResponse} extends {@link TeaModel}
*
* <p>QueryIntentionPriceResponse</p>
*/
public class QueryIntentionPriceResponse 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 QueryIntentionPriceResponseBody body;
private QueryIntentionPriceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryIntentionPriceResponse 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 QueryIntentionPriceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryIntentionPriceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryIntentionPriceResponseBody body);
@Override
QueryIntentionPriceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryIntentionPriceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryIntentionPriceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryIntentionPriceResponse 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(QueryIntentionPriceResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryIntentionPriceResponse build() {
return new QueryIntentionPriceResponse(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/QueryIntentionPriceResponseBody.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 QueryIntentionPriceResponseBody} extends {@link TeaModel}
*
* <p>QueryIntentionPriceResponseBody</p>
*/
public class QueryIntentionPriceResponseBody 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 QueryIntentionPriceResponseBody(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 QueryIntentionPriceResponseBody 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 QueryIntentionPriceResponseBody build() {
return new QueryIntentionPriceResponseBody(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("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.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 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 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;
}
/**
* 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/QueryMaterialListRequest.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 QueryMaterialListRequest} extends {@link RequestModel}
*
* <p>QueryMaterialListRequest</p>
*/
public class QueryMaterialListRequest extends Request {
@Query
@NameInMap("CardNumber")
private String cardNumber;
@Query
@NameInMap("MaterialId")
private Long materialId;
@Query
@NameInMap("MaterialVersion")
private String materialVersion;
@Query
@NameInMap("Name")
private String name;
@Query
@NameInMap("PageNum")
private Integer pageNum;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("PrincipalName")
private Integer principalName;
@Query
@NameInMap("Region")
private Integer region;
@Query
@NameInMap("Status")
private Integer status;
@Query
@NameInMap("SystemVersion")
private String systemVersion;
@Query
@NameInMap("Type")
private Integer type;
private QueryMaterialListRequest(Builder builder) {
super(builder);
this.cardNumber = builder.cardNumber;
this.materialId = builder.materialId;
this.materialVersion = builder.materialVersion;
this.name = builder.name;
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.principalName = builder.principalName;
this.region = builder.region;
this.status = builder.status;
this.systemVersion = builder.systemVersion;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static QueryMaterialListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @return materialId
*/
public Long getMaterialId() {
return this.materialId;
}
/**
* @return materialVersion
*/
public String getMaterialVersion() {
return this.materialVersion;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return pageNum
*/
public Integer getPageNum() {
return this.pageNum;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return region
*/
public Integer getRegion() {
return this.region;
}
/**
* @return status
*/
public Integer getStatus() {
return this.status;
}
/**
* @return systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
public static final class Builder extends Request.Builder<QueryMaterialListRequest, Builder> {
private String cardNumber;
private Long materialId;
private String materialVersion;
private String name;
private Integer pageNum;
private Integer pageSize;
private Integer principalName;
private Integer region;
private Integer status;
private String systemVersion;
private Integer type;
private Builder() {
super();
}
private Builder(QueryMaterialListRequest request) {
super(request);
this.cardNumber = request.cardNumber;
this.materialId = request.materialId;
this.materialVersion = request.materialVersion;
this.name = request.name;
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.principalName = request.principalName;
this.region = request.region;
this.status = request.status;
this.systemVersion = request.systemVersion;
this.type = request.type;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.putQueryParameter("CardNumber", cardNumber);
this.cardNumber = cardNumber;
return this;
}
/**
* MaterialId.
*/
public Builder materialId(Long materialId) {
this.putQueryParameter("MaterialId", materialId);
this.materialId = materialId;
return this;
}
/**
* MaterialVersion.
*/
public Builder materialVersion(String materialVersion) {
this.putQueryParameter("MaterialVersion", materialVersion);
this.materialVersion = materialVersion;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.putQueryParameter("Name", name);
this.name = name;
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;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.putQueryParameter("PrincipalName", principalName);
this.principalName = principalName;
return this;
}
/**
* Region.
*/
public Builder region(Integer region) {
this.putQueryParameter("Region", region);
this.region = region;
return this;
}
/**
* Status.
*/
public Builder status(Integer status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.putQueryParameter("SystemVersion", systemVersion);
this.systemVersion = systemVersion;
return this;
}
/**
* Type.
*/
public Builder type(Integer type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public QueryMaterialListRequest build() {
return new QueryMaterialListRequest(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/QueryMaterialListResponse.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 QueryMaterialListResponse} extends {@link TeaModel}
*
* <p>QueryMaterialListResponse</p>
*/
public class QueryMaterialListResponse 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 QueryMaterialListResponseBody body;
private QueryMaterialListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryMaterialListResponse 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 QueryMaterialListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryMaterialListResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryMaterialListResponseBody body);
@Override
QueryMaterialListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryMaterialListResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryMaterialListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryMaterialListResponse 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(QueryMaterialListResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryMaterialListResponse build() {
return new QueryMaterialListResponse(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/QueryMaterialListResponseBody.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 QueryMaterialListResponseBody} extends {@link TeaModel}
*
* <p>QueryMaterialListResponseBody</p>
*/
public class QueryMaterialListResponseBody 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 QueryMaterialListResponseBody(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 QueryMaterialListResponseBody 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 QueryMaterialListResponseBody build() {
return new QueryMaterialListResponseBody(this);
}
}
public static class Trademark extends TeaModel {
@NameInMap("CardNumber")
private String cardNumber;
@NameInMap("ContactName")
private String contactName;
@NameInMap("Id")
private Long id;
@NameInMap("LoaKey")
private String loaKey;
@NameInMap("LoaStatus")
private Integer loaStatus;
@NameInMap("MaterialVersion")
private String materialVersion;
@NameInMap("Name")
private String name;
@NameInMap("PrincipalDescription")
private String principalDescription;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("Reason")
private String reason;
@NameInMap("Region")
private Integer region;
@NameInMap("Status")
private Integer status;
@NameInMap("SystemVersion")
private String systemVersion;
@NameInMap("Type")
private Integer type;
@NameInMap("ValidDate")
private Long validDate;
private Trademark(Builder builder) {
this.cardNumber = builder.cardNumber;
this.contactName = builder.contactName;
this.id = builder.id;
this.loaKey = builder.loaKey;
this.loaStatus = builder.loaStatus;
this.materialVersion = builder.materialVersion;
this.name = builder.name;
this.principalDescription = builder.principalDescription;
this.principalName = builder.principalName;
this.reason = builder.reason;
this.region = builder.region;
this.status = builder.status;
this.systemVersion = builder.systemVersion;
this.type = builder.type;
this.validDate = builder.validDate;
}
public static Builder builder() {
return new Builder();
}
public static Trademark create() {
return builder().build();
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @return contactName
*/
public String getContactName() {
return this.contactName;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return loaKey
*/
public String getLoaKey() {
return this.loaKey;
}
/**
* @return loaStatus
*/
public Integer getLoaStatus() {
return this.loaStatus;
}
/**
* @return materialVersion
*/
public String getMaterialVersion() {
return this.materialVersion;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return principalDescription
*/
public String getPrincipalDescription() {
return this.principalDescription;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return reason
*/
public String getReason() {
return this.reason;
}
/**
* @return region
*/
public Integer getRegion() {
return this.region;
}
/**
* @return status
*/
public Integer getStatus() {
return this.status;
}
/**
* @return systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
/**
* @return validDate
*/
public Long getValidDate() {
return this.validDate;
}
public static final class Builder {
private String cardNumber;
private String contactName;
private Long id;
private String loaKey;
private Integer loaStatus;
private String materialVersion;
private String name;
private String principalDescription;
private Integer principalName;
private String reason;
private Integer region;
private Integer status;
private String systemVersion;
private Integer type;
private Long validDate;
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
return this;
}
/**
* ContactName.
*/
public Builder contactName(String contactName) {
this.contactName = contactName;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* LoaKey.
*/
public Builder loaKey(String loaKey) {
this.loaKey = loaKey;
return this;
}
/**
* LoaStatus.
*/
public Builder loaStatus(Integer loaStatus) {
this.loaStatus = loaStatus;
return this;
}
/**
* MaterialVersion.
*/
public Builder materialVersion(String materialVersion) {
this.materialVersion = materialVersion;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* PrincipalDescription.
*/
public Builder principalDescription(String principalDescription) {
this.principalDescription = principalDescription;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* Reason.
*/
public Builder reason(String reason) {
this.reason = reason;
return this;
}
/**
* Region.
*/
public Builder region(Integer region) {
this.region = region;
return this;
}
/**
* Status.
*/
public Builder status(Integer status) {
this.status = status;
return this;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.systemVersion = systemVersion;
return this;
}
/**
* Type.
*/
public Builder type(Integer type) {
this.type = type;
return this;
}
/**
* ValidDate.
*/
public Builder validDate(Long validDate) {
this.validDate = validDate;
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/QueryMaterialRequest.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 QueryMaterialRequest} extends {@link RequestModel}
*
* <p>QueryMaterialRequest</p>
*/
public class QueryMaterialRequest extends Request {
@Query
@NameInMap("Id")
@Validation(required = true)
private Long id;
@Query
@NameInMap("QueryUnconfirmedInfo")
private Boolean queryUnconfirmedInfo;
private QueryMaterialRequest(Builder builder) {
super(builder);
this.id = builder.id;
this.queryUnconfirmedInfo = builder.queryUnconfirmedInfo;
}
public static Builder builder() {
return new Builder();
}
public static QueryMaterialRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return queryUnconfirmedInfo
*/
public Boolean getQueryUnconfirmedInfo() {
return this.queryUnconfirmedInfo;
}
public static final class Builder extends Request.Builder<QueryMaterialRequest, Builder> {
private Long id;
private Boolean queryUnconfirmedInfo;
private Builder() {
super();
}
private Builder(QueryMaterialRequest request) {
super(request);
this.id = request.id;
this.queryUnconfirmedInfo = request.queryUnconfirmedInfo;
}
/**
* Id.
*/
public Builder id(Long id) {
this.putQueryParameter("Id", id);
this.id = id;
return this;
}
/**
* QueryUnconfirmedInfo.
*/
public Builder queryUnconfirmedInfo(Boolean queryUnconfirmedInfo) {
this.putQueryParameter("QueryUnconfirmedInfo", queryUnconfirmedInfo);
this.queryUnconfirmedInfo = queryUnconfirmedInfo;
return this;
}
@Override
public QueryMaterialRequest build() {
return new QueryMaterialRequest(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/QueryMaterialResponse.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 QueryMaterialResponse} extends {@link TeaModel}
*
* <p>QueryMaterialResponse</p>
*/
public class QueryMaterialResponse 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 QueryMaterialResponseBody body;
private QueryMaterialResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryMaterialResponse 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 QueryMaterialResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryMaterialResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryMaterialResponseBody body);
@Override
QueryMaterialResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryMaterialResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryMaterialResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryMaterialResponse 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(QueryMaterialResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryMaterialResponse build() {
return new QueryMaterialResponse(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/QueryMaterialResponseBody.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 QueryMaterialResponseBody} extends {@link TeaModel}
*
* <p>QueryMaterialResponseBody</p>
*/
public class QueryMaterialResponseBody 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("ContactCounty")
private String contactCounty;
@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("EAddress")
private String eAddress;
@NameInMap("EName")
private String eName;
@NameInMap("EvidenceCatalogPath")
private String evidenceCatalogPath;
@NameInMap("EvidenceOfservicePath")
private String evidenceOfservicePath;
@NameInMap("EvidencePath")
private String evidencePath;
@NameInMap("ExpirationDate")
private Long expirationDate;
@NameInMap("FactandreasonPdfPath")
private String factandreasonPdfPath;
@NameInMap("FgsqPath")
private String fgsqPath;
@NameInMap("FileBgPath")
private String fileBgPath;
@NameInMap("FileFsSqPath")
private String fileFsSqPath;
@NameInMap("FileGtPath")
private String fileGtPath;
@NameInMap("FileYgPath")
private String fileYgPath;
@NameInMap("Id")
private Long id;
@NameInMap("IdCardName")
private String idCardName;
@NameInMap("IdCardNumber")
private String idCardNumber;
@NameInMap("IdCardUrl")
private String idCardUrl;
@NameInMap("LegalNoticeKey")
private String legalNoticeKey;
@NameInMap("LegalNoticeUrl")
private String legalNoticeUrl;
@NameInMap("LoaStatus")
private Integer loaStatus;
@NameInMap("LoaUrl")
private String loaUrl;
@NameInMap("MaterialVersion")
private String materialVersion;
@NameInMap("Name")
private String name;
@NameInMap("Note")
private String note;
@NameInMap("PassportUrl")
private String passportUrl;
@NameInMap("PersonalType")
private Long personalType;
@NameInMap("PrincipalDescription")
private String principalDescription;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("Province")
private String province;
@NameInMap("Reason")
private String reason;
@NameInMap("Region")
private Integer region;
@NameInMap("RequestId")
private String requestId;
@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("SystemVersion")
private String systemVersion;
@NameInMap("Town")
private String town;
@NameInMap("Type")
private Integer type;
@NameInMap("ValidDate")
private Long validDate;
private QueryMaterialResponseBody(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.contactCounty = builder.contactCounty;
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.eAddress = builder.eAddress;
this.eName = builder.eName;
this.evidenceCatalogPath = builder.evidenceCatalogPath;
this.evidenceOfservicePath = builder.evidenceOfservicePath;
this.evidencePath = builder.evidencePath;
this.expirationDate = builder.expirationDate;
this.factandreasonPdfPath = builder.factandreasonPdfPath;
this.fgsqPath = builder.fgsqPath;
this.fileBgPath = builder.fileBgPath;
this.fileFsSqPath = builder.fileFsSqPath;
this.fileGtPath = builder.fileGtPath;
this.fileYgPath = builder.fileYgPath;
this.id = builder.id;
this.idCardName = builder.idCardName;
this.idCardNumber = builder.idCardNumber;
this.idCardUrl = builder.idCardUrl;
this.legalNoticeKey = builder.legalNoticeKey;
this.legalNoticeUrl = builder.legalNoticeUrl;
this.loaStatus = builder.loaStatus;
this.loaUrl = builder.loaUrl;
this.materialVersion = builder.materialVersion;
this.name = builder.name;
this.note = builder.note;
this.passportUrl = builder.passportUrl;
this.personalType = builder.personalType;
this.principalDescription = builder.principalDescription;
this.principalName = builder.principalName;
this.province = builder.province;
this.reason = builder.reason;
this.region = builder.region;
this.requestId = builder.requestId;
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.systemVersion = builder.systemVersion;
this.town = builder.town;
this.type = builder.type;
this.validDate = builder.validDate;
}
public static Builder builder() {
return new Builder();
}
public static QueryMaterialResponseBody 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 contactCounty
*/
public String getContactCounty() {
return this.contactCounty;
}
/**
* @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 eAddress
*/
public String getEAddress() {
return this.eAddress;
}
/**
* @return eName
*/
public String getEName() {
return this.eName;
}
/**
* @return evidenceCatalogPath
*/
public String getEvidenceCatalogPath() {
return this.evidenceCatalogPath;
}
/**
* @return evidenceOfservicePath
*/
public String getEvidenceOfservicePath() {
return this.evidenceOfservicePath;
}
/**
* @return evidencePath
*/
public String getEvidencePath() {
return this.evidencePath;
}
/**
* @return expirationDate
*/
public Long getExpirationDate() {
return this.expirationDate;
}
/**
* @return factandreasonPdfPath
*/
public String getFactandreasonPdfPath() {
return this.factandreasonPdfPath;
}
/**
* @return fgsqPath
*/
public String getFgsqPath() {
return this.fgsqPath;
}
/**
* @return fileBgPath
*/
public String getFileBgPath() {
return this.fileBgPath;
}
/**
* @return fileFsSqPath
*/
public String getFileFsSqPath() {
return this.fileFsSqPath;
}
/**
* @return fileGtPath
*/
public String getFileGtPath() {
return this.fileGtPath;
}
/**
* @return fileYgPath
*/
public String getFileYgPath() {
return this.fileYgPath;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @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 legalNoticeKey
*/
public String getLegalNoticeKey() {
return this.legalNoticeKey;
}
/**
* @return legalNoticeUrl
*/
public String getLegalNoticeUrl() {
return this.legalNoticeUrl;
}
/**
* @return loaStatus
*/
public Integer getLoaStatus() {
return this.loaStatus;
}
/**
* @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 note
*/
public String getNote() {
return this.note;
}
/**
* @return passportUrl
*/
public String getPassportUrl() {
return this.passportUrl;
}
/**
* @return personalType
*/
public Long getPersonalType() {
return this.personalType;
}
/**
* @return principalDescription
*/
public String getPrincipalDescription() {
return this.principalDescription;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return province
*/
public String getProvince() {
return this.province;
}
/**
* @return reason
*/
public String getReason() {
return this.reason;
}
/**
* @return region
*/
public Integer getRegion() {
return this.region;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @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 systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
/**
* @return town
*/
public String getTown() {
return this.town;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
/**
* @return validDate
*/
public Long getValidDate() {
return this.validDate;
}
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 contactCounty;
private String contactDistrict;
private String contactEmail;
private String contactName;
private String contactNumber;
private String contactProvince;
private String contactZipcode;
private String country;
private String eAddress;
private String eName;
private String evidenceCatalogPath;
private String evidenceOfservicePath;
private String evidencePath;
private Long expirationDate;
private String factandreasonPdfPath;
private String fgsqPath;
private String fileBgPath;
private String fileFsSqPath;
private String fileGtPath;
private String fileYgPath;
private Long id;
private String idCardName;
private String idCardNumber;
private String idCardUrl;
private String legalNoticeKey;
private String legalNoticeUrl;
private Integer loaStatus;
private String loaUrl;
private String materialVersion;
private String name;
private String note;
private String passportUrl;
private Long personalType;
private String principalDescription;
private Integer principalName;
private String province;
private String reason;
private Integer region;
private String requestId;
private ReviewAdditionalFiles reviewAdditionalFiles;
private String reviewApplicationFile;
private Integer status;
private String supplementEvidenceCatalogFile;
private String supplementEvidenceMaterialFile;
private String supplementReasonFile;
private String systemVersion;
private String town;
private Integer type;
private Long validDate;
/**
* 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;
}
/**
* ContactCounty.
*/
public Builder contactCounty(String contactCounty) {
this.contactCounty = contactCounty;
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;
}
/**
* EAddress.
*/
public Builder eAddress(String eAddress) {
this.eAddress = eAddress;
return this;
}
/**
* EName.
*/
public Builder eName(String eName) {
this.eName = eName;
return this;
}
/**
* EvidenceCatalogPath.
*/
public Builder evidenceCatalogPath(String evidenceCatalogPath) {
this.evidenceCatalogPath = evidenceCatalogPath;
return this;
}
/**
* EvidenceOfservicePath.
*/
public Builder evidenceOfservicePath(String evidenceOfservicePath) {
this.evidenceOfservicePath = evidenceOfservicePath;
return this;
}
/**
* EvidencePath.
*/
public Builder evidencePath(String evidencePath) {
this.evidencePath = evidencePath;
return this;
}
/**
* ExpirationDate.
*/
public Builder expirationDate(Long expirationDate) {
this.expirationDate = expirationDate;
return this;
}
/**
* FactandreasonPdfPath.
*/
public Builder factandreasonPdfPath(String factandreasonPdfPath) {
this.factandreasonPdfPath = factandreasonPdfPath;
return this;
}
/**
* FgsqPath.
*/
public Builder fgsqPath(String fgsqPath) {
this.fgsqPath = fgsqPath;
return this;
}
/**
* FileBgPath.
*/
public Builder fileBgPath(String fileBgPath) {
this.fileBgPath = fileBgPath;
return this;
}
/**
* FileFsSqPath.
*/
public Builder fileFsSqPath(String fileFsSqPath) {
this.fileFsSqPath = fileFsSqPath;
return this;
}
/**
* FileGtPath.
*/
public Builder fileGtPath(String fileGtPath) {
this.fileGtPath = fileGtPath;
return this;
}
/**
* FileYgPath.
*/
public Builder fileYgPath(String fileYgPath) {
this.fileYgPath = fileYgPath;
return this;
}
/**
* id
*/
public Builder id(Long id) {
this.id = id;
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;
}
/**
* LegalNoticeKey.
*/
public Builder legalNoticeKey(String legalNoticeKey) {
this.legalNoticeKey = legalNoticeKey;
return this;
}
/**
* LegalNoticeUrl.
*/
public Builder legalNoticeUrl(String legalNoticeUrl) {
this.legalNoticeUrl = legalNoticeUrl;
return this;
}
/**
* LoaStatus.
*/
public Builder loaStatus(Integer loaStatus) {
this.loaStatus = loaStatus;
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;
}
/**
* Note.
*/
public Builder note(String note) {
this.note = note;
return this;
}
/**
* PassportUrl.
*/
public Builder passportUrl(String passportUrl) {
this.passportUrl = passportUrl;
return this;
}
/**
* PersonalType.
*/
public Builder personalType(Long personalType) {
this.personalType = personalType;
return this;
}
/**
* PrincipalDescription.
*/
public Builder principalDescription(String principalDescription) {
this.principalDescription = principalDescription;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.province = province;
return this;
}
/**
* Reason.
*/
public Builder reason(String reason) {
this.reason = reason;
return this;
}
/**
* Region.
*/
public Builder region(Integer region) {
this.region = region;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
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;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.systemVersion = systemVersion;
return this;
}
/**
* Town.
*/
public Builder town(String town) {
this.town = town;
return this;
}
/**
* Type.
*/
public Builder type(Integer type) {
this.type = type;
return this;
}
/**
* ValidDate.
*/
public Builder validDate(Long validDate) {
this.validDate = validDate;
return this;
}
public QueryMaterialResponseBody build() {
return new QueryMaterialResponseBody(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);
}
}
}
}
|
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/QueryMonitorKeywordsRequest.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 QueryMonitorKeywordsRequest} extends {@link RequestModel}
*
* <p>QueryMonitorKeywordsRequest</p>
*/
public class QueryMonitorKeywordsRequest extends Request {
@Query
@NameInMap("Keywords")
@Validation(required = true)
private java.util.List < String > keywords;
@Query
@NameInMap("RuleType")
@Validation(required = true)
private Integer ruleType;
private QueryMonitorKeywordsRequest(Builder builder) {
super(builder);
this.keywords = builder.keywords;
this.ruleType = builder.ruleType;
}
public static Builder builder() {
return new Builder();
}
public static QueryMonitorKeywordsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return keywords
*/
public java.util.List < String > getKeywords() {
return this.keywords;
}
/**
* @return ruleType
*/
public Integer getRuleType() {
return this.ruleType;
}
public static final class Builder extends Request.Builder<QueryMonitorKeywordsRequest, Builder> {
private java.util.List < String > keywords;
private Integer ruleType;
private Builder() {
super();
}
private Builder(QueryMonitorKeywordsRequest request) {
super(request);
this.keywords = request.keywords;
this.ruleType = request.ruleType;
}
/**
* Keywords.
*/
public Builder keywords(java.util.List < String > keywords) {
this.putQueryParameter("Keywords", keywords);
this.keywords = keywords;
return this;
}
/**
* RuleType.
*/
public Builder ruleType(Integer ruleType) {
this.putQueryParameter("RuleType", ruleType);
this.ruleType = ruleType;
return this;
}
@Override
public QueryMonitorKeywordsRequest build() {
return new QueryMonitorKeywordsRequest(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/QueryMonitorKeywordsResponse.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 QueryMonitorKeywordsResponse} extends {@link TeaModel}
*
* <p>QueryMonitorKeywordsResponse</p>
*/
public class QueryMonitorKeywordsResponse 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 QueryMonitorKeywordsResponseBody body;
private QueryMonitorKeywordsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryMonitorKeywordsResponse 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 QueryMonitorKeywordsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryMonitorKeywordsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryMonitorKeywordsResponseBody body);
@Override
QueryMonitorKeywordsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryMonitorKeywordsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryMonitorKeywordsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryMonitorKeywordsResponse 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(QueryMonitorKeywordsResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryMonitorKeywordsResponse build() {
return new QueryMonitorKeywordsResponse(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/QueryMonitorKeywordsResponseBody.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 QueryMonitorKeywordsResponseBody} extends {@link TeaModel}
*
* <p>QueryMonitorKeywordsResponseBody</p>
*/
public class QueryMonitorKeywordsResponseBody extends TeaModel {
@NameInMap("Data")
private Data data;
@NameInMap("RequestId")
private String requestId;
private QueryMonitorKeywordsResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static QueryMonitorKeywordsResponseBody 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 QueryMonitorKeywordsResponseBody build() {
return new QueryMonitorKeywordsResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("Keywords")
private java.util.List < String > keywords;
private Data(Builder builder) {
this.keywords = builder.keywords;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return keywords
*/
public java.util.List < String > getKeywords() {
return this.keywords;
}
public static final class Builder {
private java.util.List < String > keywords;
/**
* Keywords.
*/
public Builder keywords(java.util.List < String > keywords) {
this.keywords = keywords;
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/QueryOfficialFileCustomListRequest.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 QueryOfficialFileCustomListRequest} extends {@link RequestModel}
*
* <p>QueryOfficialFileCustomListRequest</p>
*/
public class QueryOfficialFileCustomListRequest extends Request {
@Query
@NameInMap("PageNum")
@Validation(maximum = 2147483647, minimum = 1)
private Integer pageNum;
@Query
@NameInMap("PageSize")
@Validation(maximum = 100, minimum = 1)
private Integer pageSize;
private QueryOfficialFileCustomListRequest(Builder builder) {
super(builder);
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
}
public static Builder builder() {
return new Builder();
}
public static QueryOfficialFileCustomListRequest 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<QueryOfficialFileCustomListRequest, Builder> {
private Integer pageNum;
private Integer pageSize;
private Builder() {
super();
}
private Builder(QueryOfficialFileCustomListRequest 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 QueryOfficialFileCustomListRequest build() {
return new QueryOfficialFileCustomListRequest(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/QueryOfficialFileCustomListResponse.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 QueryOfficialFileCustomListResponse} extends {@link TeaModel}
*
* <p>QueryOfficialFileCustomListResponse</p>
*/
public class QueryOfficialFileCustomListResponse 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 QueryOfficialFileCustomListResponseBody body;
private QueryOfficialFileCustomListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryOfficialFileCustomListResponse 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 QueryOfficialFileCustomListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryOfficialFileCustomListResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryOfficialFileCustomListResponseBody body);
@Override
QueryOfficialFileCustomListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryOfficialFileCustomListResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryOfficialFileCustomListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryOfficialFileCustomListResponse 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(QueryOfficialFileCustomListResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryOfficialFileCustomListResponse build() {
return new QueryOfficialFileCustomListResponse(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/QueryOfficialFileCustomListResponseBody.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 QueryOfficialFileCustomListResponseBody} extends {@link TeaModel}
*
* <p>QueryOfficialFileCustomListResponseBody</p>
*/
public class QueryOfficialFileCustomListResponseBody 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 QueryOfficialFileCustomListResponseBody(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 QueryOfficialFileCustomListResponseBody 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 QueryOfficialFileCustomListResponseBody build() {
return new QueryOfficialFileCustomListResponseBody(this);
}
}
public static class CustomList extends TeaModel {
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("DownloadUrl")
private String downloadUrl;
@NameInMap("EndAcceptTime")
private Long endAcceptTime;
@NameInMap("ExpireTime")
private Long expireTime;
@NameInMap("Remark")
private String remark;
@NameInMap("StartAcceptTime")
private Long startAcceptTime;
@NameInMap("Status")
private String status;
private CustomList(Builder builder) {
this.createTime = builder.createTime;
this.downloadUrl = builder.downloadUrl;
this.endAcceptTime = builder.endAcceptTime;
this.expireTime = builder.expireTime;
this.remark = builder.remark;
this.startAcceptTime = builder.startAcceptTime;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static CustomList create() {
return builder().build();
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return downloadUrl
*/
public String getDownloadUrl() {
return this.downloadUrl;
}
/**
* @return endAcceptTime
*/
public Long getEndAcceptTime() {
return this.endAcceptTime;
}
/**
* @return expireTime
*/
public Long getExpireTime() {
return this.expireTime;
}
/**
* @return remark
*/
public String getRemark() {
return this.remark;
}
/**
* @return startAcceptTime
*/
public Long getStartAcceptTime() {
return this.startAcceptTime;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder {
private Long createTime;
private String downloadUrl;
private Long endAcceptTime;
private Long expireTime;
private String remark;
private Long startAcceptTime;
private String status;
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* DownloadUrl.
*/
public Builder downloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
return this;
}
/**
* EndAcceptTime.
*/
public Builder endAcceptTime(Long endAcceptTime) {
this.endAcceptTime = endAcceptTime;
return this;
}
/**
* ExpireTime.
*/
public Builder expireTime(Long expireTime) {
this.expireTime = expireTime;
return this;
}
/**
* Remark.
*/
public Builder remark(String remark) {
this.remark = remark;
return this;
}
/**
* StartAcceptTime.
*/
public Builder startAcceptTime(Long startAcceptTime) {
this.startAcceptTime = startAcceptTime;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.status = status;
return this;
}
public CustomList build() {
return new CustomList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("CustomList")
private java.util.List < CustomList> customList;
private Data(Builder builder) {
this.customList = builder.customList;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return customList
*/
public java.util.List < CustomList> getCustomList() {
return this.customList;
}
public static final class Builder {
private java.util.List < CustomList> customList;
/**
* CustomList.
*/
public Builder customList(java.util.List < CustomList> customList) {
this.customList = customList;
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/QueryOrderLogisticsListRequest.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 QueryOrderLogisticsListRequest} extends {@link RequestModel}
*
* <p>QueryOrderLogisticsListRequest</p>
*/
public class QueryOrderLogisticsListRequest extends Request {
@Body
@NameInMap("FileType")
private String fileType;
@Body
@NameInMap("PageNum")
private Long pageNum;
@Body
@NameInMap("PageSize")
private Long pageSize;
@Body
@NameInMap("ProduceOrderId")
private String produceOrderId;
@Body
@NameInMap("RegisterNumber")
private String registerNumber;
private QueryOrderLogisticsListRequest(Builder builder) {
super(builder);
this.fileType = builder.fileType;
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.produceOrderId = builder.produceOrderId;
this.registerNumber = builder.registerNumber;
}
public static Builder builder() {
return new Builder();
}
public static QueryOrderLogisticsListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return fileType
*/
public String getFileType() {
return this.fileType;
}
/**
* @return pageNum
*/
public Long getPageNum() {
return this.pageNum;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return produceOrderId
*/
public String getProduceOrderId() {
return this.produceOrderId;
}
/**
* @return registerNumber
*/
public String getRegisterNumber() {
return this.registerNumber;
}
public static final class Builder extends Request.Builder<QueryOrderLogisticsListRequest, Builder> {
private String fileType;
private Long pageNum;
private Long pageSize;
private String produceOrderId;
private String registerNumber;
private Builder() {
super();
}
private Builder(QueryOrderLogisticsListRequest request) {
super(request);
this.fileType = request.fileType;
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.produceOrderId = request.produceOrderId;
this.registerNumber = request.registerNumber;
}
/**
* FileType.
*/
public Builder fileType(String fileType) {
this.putBodyParameter("FileType", fileType);
this.fileType = fileType;
return this;
}
/**
* PageNum.
*/
public Builder pageNum(Long pageNum) {
this.putBodyParameter("PageNum", pageNum);
this.pageNum = pageNum;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Long pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* ProduceOrderId.
*/
public Builder produceOrderId(String produceOrderId) {
this.putBodyParameter("ProduceOrderId", produceOrderId);
this.produceOrderId = produceOrderId;
return this;
}
/**
* RegisterNumber.
*/
public Builder registerNumber(String registerNumber) {
this.putBodyParameter("RegisterNumber", registerNumber);
this.registerNumber = registerNumber;
return this;
}
@Override
public QueryOrderLogisticsListRequest build() {
return new QueryOrderLogisticsListRequest(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/QueryOrderLogisticsListResponse.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 QueryOrderLogisticsListResponse} extends {@link TeaModel}
*
* <p>QueryOrderLogisticsListResponse</p>
*/
public class QueryOrderLogisticsListResponse 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 QueryOrderLogisticsListResponseBody body;
private QueryOrderLogisticsListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryOrderLogisticsListResponse 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 QueryOrderLogisticsListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryOrderLogisticsListResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryOrderLogisticsListResponseBody body);
@Override
QueryOrderLogisticsListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryOrderLogisticsListResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryOrderLogisticsListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryOrderLogisticsListResponse 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(QueryOrderLogisticsListResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryOrderLogisticsListResponse build() {
return new QueryOrderLogisticsListResponse(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/QueryOrderLogisticsListResponseBody.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 QueryOrderLogisticsListResponseBody} extends {@link TeaModel}
*
* <p>QueryOrderLogisticsListResponseBody</p>
*/
public class QueryOrderLogisticsListResponseBody extends TeaModel {
@NameInMap("CurrentPageNum")
private Integer currentPageNum;
@NameInMap("Data")
private java.util.List < Data> data;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalItemNum")
private Integer totalItemNum;
@NameInMap("TotalPageNum")
private Integer totalPageNum;
private QueryOrderLogisticsListResponseBody(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 QueryOrderLogisticsListResponseBody create() {
return builder().build();
}
/**
* @return currentPageNum
*/
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
/**
* @return data
*/
public java.util.List < 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 java.util.List < 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(java.util.List < 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 QueryOrderLogisticsListResponseBody build() {
return new QueryOrderLogisticsListResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("FileIdentifier")
private String fileIdentifier;
@NameInMap("FileType")
private String fileType;
@NameInMap("LogisticsNo")
private String logisticsNo;
@NameInMap("ProduceOrderId")
private String produceOrderId;
@NameInMap("TmIcon")
private String tmIcon;
@NameInMap("TmName")
private String tmName;
@NameInMap("TmNumber")
private String tmNumber;
private Data(Builder builder) {
this.bizId = builder.bizId;
this.fileIdentifier = builder.fileIdentifier;
this.fileType = builder.fileType;
this.logisticsNo = builder.logisticsNo;
this.produceOrderId = builder.produceOrderId;
this.tmIcon = builder.tmIcon;
this.tmName = builder.tmName;
this.tmNumber = builder.tmNumber;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return fileIdentifier
*/
public String getFileIdentifier() {
return this.fileIdentifier;
}
/**
* @return fileType
*/
public String getFileType() {
return this.fileType;
}
/**
* @return logisticsNo
*/
public String getLogisticsNo() {
return this.logisticsNo;
}
/**
* @return produceOrderId
*/
public String getProduceOrderId() {
return this.produceOrderId;
}
/**
* @return tmIcon
*/
public String getTmIcon() {
return this.tmIcon;
}
/**
* @return tmName
*/
public String getTmName() {
return this.tmName;
}
/**
* @return tmNumber
*/
public String getTmNumber() {
return this.tmNumber;
}
public static final class Builder {
private String bizId;
private String fileIdentifier;
private String fileType;
private String logisticsNo;
private String produceOrderId;
private String tmIcon;
private String tmName;
private String tmNumber;
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* FileIdentifier.
*/
public Builder fileIdentifier(String fileIdentifier) {
this.fileIdentifier = fileIdentifier;
return this;
}
/**
* FileType.
*/
public Builder fileType(String fileType) {
this.fileType = fileType;
return this;
}
/**
* LogisticsNo.
*/
public Builder logisticsNo(String logisticsNo) {
this.logisticsNo = logisticsNo;
return this;
}
/**
* ProduceOrderId.
*/
public Builder produceOrderId(String produceOrderId) {
this.produceOrderId = produceOrderId;
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;
}
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/QueryOssResourcesRequest.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 QueryOssResourcesRequest} extends {@link RequestModel}
*
* <p>QueryOssResourcesRequest</p>
*/
public class QueryOssResourcesRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private QueryOssResourcesRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static QueryOssResourcesRequest 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<QueryOssResourcesRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(QueryOssResourcesRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public QueryOssResourcesRequest build() {
return new QueryOssResourcesRequest(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/QueryOssResourcesResponse.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 QueryOssResourcesResponse} extends {@link TeaModel}
*
* <p>QueryOssResourcesResponse</p>
*/
public class QueryOssResourcesResponse 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 QueryOssResourcesResponseBody body;
private QueryOssResourcesResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryOssResourcesResponse 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 QueryOssResourcesResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryOssResourcesResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryOssResourcesResponseBody body);
@Override
QueryOssResourcesResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryOssResourcesResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryOssResourcesResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryOssResourcesResponse 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(QueryOssResourcesResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryOssResourcesResponse build() {
return new QueryOssResourcesResponse(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/QueryOssResourcesResponseBody.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 QueryOssResourcesResponseBody} extends {@link TeaModel}
*
* <p>QueryOssResourcesResponseBody</p>
*/
public class QueryOssResourcesResponseBody extends TeaModel {
@NameInMap("Data")
private Data data;
@NameInMap("RequestId")
private String requestId;
private QueryOssResourcesResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static QueryOssResourcesResponseBody 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 QueryOssResourcesResponseBody build() {
return new QueryOssResourcesResponseBody(this);
}
}
public static class TaskList extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("Name")
private String name;
@NameInMap("OssUrl")
private String ossUrl;
@NameInMap("UpdateTime")
private Long updateTime;
private TaskList(Builder builder) {
this.bizId = builder.bizId;
this.createTime = builder.createTime;
this.name = builder.name;
this.ossUrl = builder.ossUrl;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static TaskList create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return ossUrl
*/
public String getOssUrl() {
return this.ossUrl;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String bizId;
private Long createTime;
private String name;
private String ossUrl;
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;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* OssUrl.
*/
public Builder ossUrl(String ossUrl) {
this.ossUrl = ossUrl;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
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/QueryProduceDetailRequest.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 QueryProduceDetailRequest} extends {@link RequestModel}
*
* <p>QueryProduceDetailRequest</p>
*/
public class QueryProduceDetailRequest extends Request {
@Query
@NameInMap("ApplyNo")
private String applyNo;
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("OrderId")
private String orderId;
private QueryProduceDetailRequest(Builder builder) {
super(builder);
this.applyNo = builder.applyNo;
this.bizId = builder.bizId;
this.orderId = builder.orderId;
}
public static Builder builder() {
return new Builder();
}
public static QueryProduceDetailRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return applyNo
*/
public String getApplyNo() {
return this.applyNo;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
public static final class Builder extends Request.Builder<QueryProduceDetailRequest, Builder> {
private String applyNo;
private String bizId;
private String orderId;
private Builder() {
super();
}
private Builder(QueryProduceDetailRequest request) {
super(request);
this.applyNo = request.applyNo;
this.bizId = request.bizId;
this.orderId = request.orderId;
}
/**
* ApplyNo.
*/
public Builder applyNo(String applyNo) {
this.putQueryParameter("ApplyNo", applyNo);
this.applyNo = applyNo;
return this;
}
/**
* 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 QueryProduceDetailRequest build() {
return new QueryProduceDetailRequest(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/QueryProduceDetailResponse.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 QueryProduceDetailResponse} extends {@link TeaModel}
*
* <p>QueryProduceDetailResponse</p>
*/
public class QueryProduceDetailResponse 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 QueryProduceDetailResponseBody body;
private QueryProduceDetailResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryProduceDetailResponse 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 QueryProduceDetailResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryProduceDetailResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryProduceDetailResponseBody body);
@Override
QueryProduceDetailResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryProduceDetailResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryProduceDetailResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryProduceDetailResponse 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(QueryProduceDetailResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryProduceDetailResponse build() {
return new QueryProduceDetailResponse(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/QueryProduceDetailResponseBody.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 QueryProduceDetailResponseBody} extends {@link TeaModel}
*
* <p>QueryProduceDetailResponseBody</p>
*/
public class QueryProduceDetailResponseBody extends TeaModel {
@NameInMap("AcceptUrl")
private String acceptUrl;
@NameInMap("AgreementId")
private String agreementId;
@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("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("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 QueryProduceDetailResponseBody(Builder builder) {
this.acceptUrl = builder.acceptUrl;
this.agreementId = builder.agreementId;
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.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.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 QueryProduceDetailResponseBody create() {
return builder().build();
}
/**
* @return acceptUrl
*/
public String getAcceptUrl() {
return this.acceptUrl;
}
/**
* @return agreementId
*/
public String getAgreementId() {
return this.agreementId;
}
/**
* @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 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 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 agreementId;
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 note;
private String orderId;
private Integer principalName;
private String requestId;
private RootCode rootCode;
private Integer status;
private Integer submitCount;
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;
}
/**
* AgreementId.
*/
public Builder agreementId(String agreementId) {
this.agreementId = agreementId;
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;
}
/**
* 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;
}
/**
* 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 QueryProduceDetailResponseBody build() {
return new QueryProduceDetailResponseBody(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("ContactZipcode")
private String contactZipcode;
@NameInMap("Country")
private String country;
@NameInMap("EAddress")
private String eAddress;
@NameInMap("EName")
private String eName;
@NameInMap("ExpirationDate")
private String expirationDate;
@NameInMap("IdCardUrl")
private String idCardUrl;
@NameInMap("LoaUrl")
private String loaUrl;
@NameInMap("Name")
private String name;
@NameInMap("PassportUrl")
private String passportUrl;
@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.contactZipcode = builder.contactZipcode;
this.country = builder.country;
this.eAddress = builder.eAddress;
this.eName = builder.eName;
this.expirationDate = builder.expirationDate;
this.idCardUrl = builder.idCardUrl;
this.loaUrl = builder.loaUrl;
this.name = builder.name;
this.passportUrl = builder.passportUrl;
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 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 expirationDate
*/
public String getExpirationDate() {
return this.expirationDate;
}
/**
* @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 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 contactZipcode;
private String country;
private String eAddress;
private String eName;
private String expirationDate;
private String idCardUrl;
private String loaUrl;
private String name;
private String passportUrl;
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;
}
/**
* 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;
}
/**
* ExpirationDate.
*/
public Builder expirationDate(String expirationDate) {
this.expirationDate = expirationDate;
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;
}
/**
* 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/QueryProduceListRequest.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 QueryProduceListRequest} extends {@link RequestModel}
*
* <p>QueryProduceListRequest</p>
*/
public class QueryProduceListRequest extends Request {
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("CreateTimeLeft")
private Long createTimeLeft;
@Query
@NameInMap("CreateTimeRight")
private Long createTimeRight;
@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("Status")
private Integer status;
@Query
@NameInMap("TmName")
private String tmName;
@Query
@NameInMap("TmNumber")
private String tmNumber;
@Query
@NameInMap("Type")
private Integer type;
@Query
@NameInMap("UserId")
private String userId;
private QueryProduceListRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
this.createTimeLeft = builder.createTimeLeft;
this.createTimeRight = builder.createTimeRight;
this.materialName = builder.materialName;
this.orderId = builder.orderId;
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
this.status = builder.status;
this.tmName = builder.tmName;
this.tmNumber = builder.tmNumber;
this.type = builder.type;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static QueryProduceListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return createTimeLeft
*/
public Long getCreateTimeLeft() {
return this.createTimeLeft;
}
/**
* @return createTimeRight
*/
public Long getCreateTimeRight() {
return this.createTimeRight;
}
/**
* @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 status
*/
public Integer getStatus() {
return this.status;
}
/**
* @return tmName
*/
public String getTmName() {
return this.tmName;
}
/**
* @return tmNumber
*/
public String getTmNumber() {
return this.tmNumber;
}
/**
* @return type
*/
public Integer getType() {
return this.type;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder extends Request.Builder<QueryProduceListRequest, Builder> {
private String bizId;
private Long createTimeLeft;
private Long createTimeRight;
private String materialName;
private String orderId;
private Integer pageNum;
private Integer pageSize;
private Integer status;
private String tmName;
private String tmNumber;
private Integer type;
private String userId;
private Builder() {
super();
}
private Builder(QueryProduceListRequest request) {
super(request);
this.bizId = request.bizId;
this.createTimeLeft = request.createTimeLeft;
this.createTimeRight = request.createTimeRight;
this.materialName = request.materialName;
this.orderId = request.orderId;
this.pageNum = request.pageNum;
this.pageSize = request.pageSize;
this.status = request.status;
this.tmName = request.tmName;
this.tmNumber = request.tmNumber;
this.type = request.type;
this.userId = request.userId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* CreateTimeLeft.
*/
public Builder createTimeLeft(Long createTimeLeft) {
this.putQueryParameter("CreateTimeLeft", createTimeLeft);
this.createTimeLeft = createTimeLeft;
return this;
}
/**
* CreateTimeRight.
*/
public Builder createTimeRight(Long createTimeRight) {
this.putQueryParameter("CreateTimeRight", createTimeRight);
this.createTimeRight = createTimeRight;
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;
}
/**
* Status.
*/
public Builder status(Integer status) {
this.putQueryParameter("Status", status);
this.status = status;
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(Integer type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.putQueryParameter("UserId", userId);
this.userId = userId;
return this;
}
@Override
public QueryProduceListRequest build() {
return new QueryProduceListRequest(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/QueryProduceListResponse.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 QueryProduceListResponse} extends {@link TeaModel}
*
* <p>QueryProduceListResponse</p>
*/
public class QueryProduceListResponse 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 QueryProduceListResponseBody body;
private QueryProduceListResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryProduceListResponse 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 QueryProduceListResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryProduceListResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryProduceListResponseBody body);
@Override
QueryProduceListResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryProduceListResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryProduceListResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryProduceListResponse 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(QueryProduceListResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryProduceListResponse build() {
return new QueryProduceListResponse(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/QueryProduceListResponseBody.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 QueryProduceListResponseBody} extends {@link TeaModel}
*
* <p>QueryProduceListResponseBody</p>
*/
public class QueryProduceListResponseBody 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 QueryProduceListResponseBody(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 QueryProduceListResponseBody 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 QueryProduceListResponseBody build() {
return new QueryProduceListResponseBody(this);
}
}
public static class Classification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
private Classification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
}
public static Builder builder() {
return new Builder();
}
public static Classification 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 Classification build() {
return new Classification(this);
}
}
}
public static class TmProduces extends TeaModel {
@NameInMap("AgreementId")
private String agreementId;
@NameInMap("BizId")
private String bizId;
@NameInMap("Classification")
private Classification classification;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("LoaUrl")
private String loaUrl;
@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("ReceiptUrl")
private String receiptUrl;
@NameInMap("Status")
private Integer status;
@NameInMap("SubmitCount")
private Integer submitCount;
@NameInMap("TmIcon")
private String tmIcon;
@NameInMap("TmName")
private String tmName;
@NameInMap("TmNumber")
private String tmNumber;
@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.classification = builder.classification;
this.createTime = builder.createTime;
this.loaUrl = builder.loaUrl;
this.materialName = builder.materialName;
this.note = builder.note;
this.orderId = builder.orderId;
this.orderPrice = builder.orderPrice;
this.principalName = builder.principalName;
this.receiptUrl = builder.receiptUrl;
this.status = builder.status;
this.submitCount = builder.submitCount;
this.tmIcon = builder.tmIcon;
this.tmName = builder.tmName;
this.tmNumber = builder.tmNumber;
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 classification
*/
public Classification getClassification() {
return this.classification;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return loaUrl
*/
public String getLoaUrl() {
return this.loaUrl;
}
/**
* @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 receiptUrl
*/
public String getReceiptUrl() {
return this.receiptUrl;
}
/**
* @return status
*/
public Integer getStatus() {
return this.status;
}
/**
* @return submitCount
*/
public Integer getSubmitCount() {
return this.submitCount;
}
/**
* @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 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 Classification classification;
private Long createTime;
private String loaUrl;
private String materialName;
private String note;
private String orderId;
private Float orderPrice;
private Integer principalName;
private String receiptUrl;
private Integer status;
private Integer submitCount;
private String tmIcon;
private String tmName;
private String tmNumber;
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;
}
/**
* Classification.
*/
public Builder classification(Classification classification) {
this.classification = classification;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* LoaUrl.
*/
public Builder loaUrl(String loaUrl) {
this.loaUrl = loaUrl;
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;
}
/**
* ReceiptUrl.
*/
public Builder receiptUrl(String receiptUrl) {
this.receiptUrl = receiptUrl;
return this;
}
/**
* Status.
*/
public Builder status(Integer status) {
this.status = status;
return this;
}
/**
* SubmitCount.
*/
public Builder submitCount(Integer submitCount) {
this.submitCount = submitCount;
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;
}
/**
* 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/QueryQrCodeUploadStatusRequest.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 QueryQrCodeUploadStatusRequest} extends {@link RequestModel}
*
* <p>QueryQrCodeUploadStatusRequest</p>
*/
public class QueryQrCodeUploadStatusRequest extends Request {
@Query
@NameInMap("FieldKey")
private String fieldKey;
@Query
@NameInMap("OssKey")
private String ossKey;
@Query
@NameInMap("Uuid")
private String uuid;
private QueryQrCodeUploadStatusRequest(Builder builder) {
super(builder);
this.fieldKey = builder.fieldKey;
this.ossKey = builder.ossKey;
this.uuid = builder.uuid;
}
public static Builder builder() {
return new Builder();
}
public static QueryQrCodeUploadStatusRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return fieldKey
*/
public String getFieldKey() {
return this.fieldKey;
}
/**
* @return ossKey
*/
public String getOssKey() {
return this.ossKey;
}
/**
* @return uuid
*/
public String getUuid() {
return this.uuid;
}
public static final class Builder extends Request.Builder<QueryQrCodeUploadStatusRequest, Builder> {
private String fieldKey;
private String ossKey;
private String uuid;
private Builder() {
super();
}
private Builder(QueryQrCodeUploadStatusRequest request) {
super(request);
this.fieldKey = request.fieldKey;
this.ossKey = request.ossKey;
this.uuid = request.uuid;
}
/**
* FieldKey.
*/
public Builder fieldKey(String fieldKey) {
this.putQueryParameter("FieldKey", fieldKey);
this.fieldKey = fieldKey;
return this;
}
/**
* OssKey.
*/
public Builder ossKey(String ossKey) {
this.putQueryParameter("OssKey", ossKey);
this.ossKey = ossKey;
return this;
}
/**
* Uuid.
*/
public Builder uuid(String uuid) {
this.putQueryParameter("Uuid", uuid);
this.uuid = uuid;
return this;
}
@Override
public QueryQrCodeUploadStatusRequest build() {
return new QueryQrCodeUploadStatusRequest(this);
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.