index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CloseTrademarkApplicationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CloseTrademarkApplicationRequest} extends {@link RequestModel}
*
* <p>CloseTrademarkApplicationRequest</p>
*/
public class CloseTrademarkApplicationRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private CloseTrademarkApplicationRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static CloseTrademarkApplicationRequest 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<CloseTrademarkApplicationRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(CloseTrademarkApplicationRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public CloseTrademarkApplicationRequest build() {
return new CloseTrademarkApplicationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CloseTrademarkApplicationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CloseTrademarkApplicationResponse} extends {@link TeaModel}
*
* <p>CloseTrademarkApplicationResponse</p>
*/
public class CloseTrademarkApplicationResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CloseTrademarkApplicationResponseBody body;
private CloseTrademarkApplicationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CloseTrademarkApplicationResponse 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 CloseTrademarkApplicationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CloseTrademarkApplicationResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CloseTrademarkApplicationResponseBody body);
@Override
CloseTrademarkApplicationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CloseTrademarkApplicationResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CloseTrademarkApplicationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CloseTrademarkApplicationResponse 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(CloseTrademarkApplicationResponseBody body) {
this.body = body;
return this;
}
@Override
public CloseTrademarkApplicationResponse build() {
return new CloseTrademarkApplicationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CloseTrademarkApplicationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CloseTrademarkApplicationResponseBody} extends {@link TeaModel}
*
* <p>CloseTrademarkApplicationResponseBody</p>
*/
public class CloseTrademarkApplicationResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private CloseTrademarkApplicationResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static CloseTrademarkApplicationResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public CloseTrademarkApplicationResponseBody build() {
return new CloseTrademarkApplicationResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CombineAuthorizationLetterRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CombineAuthorizationLetterRequest} extends {@link RequestModel}
*
* <p>CombineAuthorizationLetterRequest</p>
*/
public class CombineAuthorizationLetterRequest extends Request {
@Query
@NameInMap("Address")
private String address;
@Query
@NameInMap("ApplicantType")
private String applicantType;
@Query
@NameInMap("ContactName")
private String contactName;
@Query
@NameInMap("ContactPhone")
private String contactPhone;
@Query
@NameInMap("ContactPostcode")
private String contactPostcode;
@Query
@NameInMap("MaterialId")
private String materialId;
@Query
@NameInMap("MaterialName")
private String materialName;
@Query
@NameInMap("Nationality")
private String nationality;
@Query
@NameInMap("PersonalType")
private String personalType;
@Query
@NameInMap("PrincipalName")
private Integer principalName;
@Query
@NameInMap("TmProduceType")
private String tmProduceType;
@Query
@NameInMap("TrademarkName")
private String trademarkName;
private CombineAuthorizationLetterRequest(Builder builder) {
super(builder);
this.address = builder.address;
this.applicantType = builder.applicantType;
this.contactName = builder.contactName;
this.contactPhone = builder.contactPhone;
this.contactPostcode = builder.contactPostcode;
this.materialId = builder.materialId;
this.materialName = builder.materialName;
this.nationality = builder.nationality;
this.personalType = builder.personalType;
this.principalName = builder.principalName;
this.tmProduceType = builder.tmProduceType;
this.trademarkName = builder.trademarkName;
}
public static Builder builder() {
return new Builder();
}
public static CombineAuthorizationLetterRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return applicantType
*/
public String getApplicantType() {
return this.applicantType;
}
/**
* @return contactName
*/
public String getContactName() {
return this.contactName;
}
/**
* @return contactPhone
*/
public String getContactPhone() {
return this.contactPhone;
}
/**
* @return contactPostcode
*/
public String getContactPostcode() {
return this.contactPostcode;
}
/**
* @return materialId
*/
public String getMaterialId() {
return this.materialId;
}
/**
* @return materialName
*/
public String getMaterialName() {
return this.materialName;
}
/**
* @return nationality
*/
public String getNationality() {
return this.nationality;
}
/**
* @return personalType
*/
public String getPersonalType() {
return this.personalType;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return tmProduceType
*/
public String getTmProduceType() {
return this.tmProduceType;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
public static final class Builder extends Request.Builder<CombineAuthorizationLetterRequest, Builder> {
private String address;
private String applicantType;
private String contactName;
private String contactPhone;
private String contactPostcode;
private String materialId;
private String materialName;
private String nationality;
private String personalType;
private Integer principalName;
private String tmProduceType;
private String trademarkName;
private Builder() {
super();
}
private Builder(CombineAuthorizationLetterRequest request) {
super(request);
this.address = request.address;
this.applicantType = request.applicantType;
this.contactName = request.contactName;
this.contactPhone = request.contactPhone;
this.contactPostcode = request.contactPostcode;
this.materialId = request.materialId;
this.materialName = request.materialName;
this.nationality = request.nationality;
this.personalType = request.personalType;
this.principalName = request.principalName;
this.tmProduceType = request.tmProduceType;
this.trademarkName = request.trademarkName;
}
/**
* Address.
*/
public Builder address(String address) {
this.putQueryParameter("Address", address);
this.address = address;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(String applicantType) {
this.putQueryParameter("ApplicantType", applicantType);
this.applicantType = applicantType;
return this;
}
/**
* ContactName.
*/
public Builder contactName(String contactName) {
this.putQueryParameter("ContactName", contactName);
this.contactName = contactName;
return this;
}
/**
* ContactPhone.
*/
public Builder contactPhone(String contactPhone) {
this.putQueryParameter("ContactPhone", contactPhone);
this.contactPhone = contactPhone;
return this;
}
/**
* ContactPostcode.
*/
public Builder contactPostcode(String contactPostcode) {
this.putQueryParameter("ContactPostcode", contactPostcode);
this.contactPostcode = contactPostcode;
return this;
}
/**
* MaterialId.
*/
public Builder materialId(String materialId) {
this.putQueryParameter("MaterialId", materialId);
this.materialId = materialId;
return this;
}
/**
* MaterialName.
*/
public Builder materialName(String materialName) {
this.putQueryParameter("MaterialName", materialName);
this.materialName = materialName;
return this;
}
/**
* Nationality.
*/
public Builder nationality(String nationality) {
this.putQueryParameter("Nationality", nationality);
this.nationality = nationality;
return this;
}
/**
* PersonalType.
*/
public Builder personalType(String 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;
}
/**
* TmProduceType.
*/
public Builder tmProduceType(String tmProduceType) {
this.putQueryParameter("TmProduceType", tmProduceType);
this.tmProduceType = tmProduceType;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.putQueryParameter("TrademarkName", trademarkName);
this.trademarkName = trademarkName;
return this;
}
@Override
public CombineAuthorizationLetterRequest build() {
return new CombineAuthorizationLetterRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CombineAuthorizationLetterResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CombineAuthorizationLetterResponse} extends {@link TeaModel}
*
* <p>CombineAuthorizationLetterResponse</p>
*/
public class CombineAuthorizationLetterResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CombineAuthorizationLetterResponseBody body;
private CombineAuthorizationLetterResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CombineAuthorizationLetterResponse 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 CombineAuthorizationLetterResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CombineAuthorizationLetterResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CombineAuthorizationLetterResponseBody body);
@Override
CombineAuthorizationLetterResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CombineAuthorizationLetterResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CombineAuthorizationLetterResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CombineAuthorizationLetterResponse 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(CombineAuthorizationLetterResponseBody body) {
this.body = body;
return this;
}
@Override
public CombineAuthorizationLetterResponse build() {
return new CombineAuthorizationLetterResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CombineAuthorizationLetterResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CombineAuthorizationLetterResponseBody} extends {@link TeaModel}
*
* <p>CombineAuthorizationLetterResponseBody</p>
*/
public class CombineAuthorizationLetterResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TemplateCombineUrl")
private String templateCombineUrl;
private CombineAuthorizationLetterResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.templateCombineUrl = builder.templateCombineUrl;
}
public static Builder builder() {
return new Builder();
}
public static CombineAuthorizationLetterResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return templateCombineUrl
*/
public String getTemplateCombineUrl() {
return this.templateCombineUrl;
}
public static final class Builder {
private String requestId;
private String templateCombineUrl;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TemplateCombineUrl.
*/
public Builder templateCombineUrl(String templateCombineUrl) {
this.templateCombineUrl = templateCombineUrl;
return this;
}
public CombineAuthorizationLetterResponseBody build() {
return new CombineAuthorizationLetterResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ComplementTrademarkApplicationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ComplementTrademarkApplicationRequest} extends {@link RequestModel}
*
* <p>ComplementTrademarkApplicationRequest</p>
*/
public class ComplementTrademarkApplicationRequest extends Request {
@Query
@NameInMap("AgreementId")
private String agreementId;
@Query
@NameInMap("AuthorizationOssKey")
private String authorizationOssKey;
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
@Query
@NameInMap("IsBlackIcon")
private Boolean isBlackIcon;
@Query
@NameInMap("MaterialId")
private String materialId;
@Query
@NameInMap("OrderData")
private String orderData;
@Query
@NameInMap("Source")
private String source;
@Query
@NameInMap("TrademarkComment")
@Validation(required = true)
private String trademarkComment;
@Query
@NameInMap("TrademarkIconOssKey")
@Validation(required = true)
private String trademarkIconOssKey;
@Query
@NameInMap("TrademarkName")
private String trademarkName;
@Query
@NameInMap("TrademarkNameType")
private String trademarkNameType;
@Query
@NameInMap("TrademarkType")
@Validation(maximum = 100, minimum = 1)
private Integer trademarkType;
private ComplementTrademarkApplicationRequest(Builder builder) {
super(builder);
this.agreementId = builder.agreementId;
this.authorizationOssKey = builder.authorizationOssKey;
this.bizId = builder.bizId;
this.isBlackIcon = builder.isBlackIcon;
this.materialId = builder.materialId;
this.orderData = builder.orderData;
this.source = builder.source;
this.trademarkComment = builder.trademarkComment;
this.trademarkIconOssKey = builder.trademarkIconOssKey;
this.trademarkName = builder.trademarkName;
this.trademarkNameType = builder.trademarkNameType;
this.trademarkType = builder.trademarkType;
}
public static Builder builder() {
return new Builder();
}
public static ComplementTrademarkApplicationRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return agreementId
*/
public String getAgreementId() {
return this.agreementId;
}
/**
* @return authorizationOssKey
*/
public String getAuthorizationOssKey() {
return this.authorizationOssKey;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return isBlackIcon
*/
public Boolean getIsBlackIcon() {
return this.isBlackIcon;
}
/**
* @return materialId
*/
public String getMaterialId() {
return this.materialId;
}
/**
* @return orderData
*/
public String getOrderData() {
return this.orderData;
}
/**
* @return source
*/
public String getSource() {
return this.source;
}
/**
* @return trademarkComment
*/
public String getTrademarkComment() {
return this.trademarkComment;
}
/**
* @return trademarkIconOssKey
*/
public String getTrademarkIconOssKey() {
return this.trademarkIconOssKey;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNameType
*/
public String getTrademarkNameType() {
return this.trademarkNameType;
}
/**
* @return trademarkType
*/
public Integer getTrademarkType() {
return this.trademarkType;
}
public static final class Builder extends Request.Builder<ComplementTrademarkApplicationRequest, Builder> {
private String agreementId;
private String authorizationOssKey;
private String bizId;
private Boolean isBlackIcon;
private String materialId;
private String orderData;
private String source;
private String trademarkComment;
private String trademarkIconOssKey;
private String trademarkName;
private String trademarkNameType;
private Integer trademarkType;
private Builder() {
super();
}
private Builder(ComplementTrademarkApplicationRequest request) {
super(request);
this.agreementId = request.agreementId;
this.authorizationOssKey = request.authorizationOssKey;
this.bizId = request.bizId;
this.isBlackIcon = request.isBlackIcon;
this.materialId = request.materialId;
this.orderData = request.orderData;
this.source = request.source;
this.trademarkComment = request.trademarkComment;
this.trademarkIconOssKey = request.trademarkIconOssKey;
this.trademarkName = request.trademarkName;
this.trademarkNameType = request.trademarkNameType;
this.trademarkType = request.trademarkType;
}
/**
* AgreementId.
*/
public Builder agreementId(String agreementId) {
this.putQueryParameter("AgreementId", agreementId);
this.agreementId = agreementId;
return this;
}
/**
* AuthorizationOssKey.
*/
public Builder authorizationOssKey(String authorizationOssKey) {
this.putQueryParameter("AuthorizationOssKey", authorizationOssKey);
this.authorizationOssKey = authorizationOssKey;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* IsBlackIcon.
*/
public Builder isBlackIcon(Boolean isBlackIcon) {
this.putQueryParameter("IsBlackIcon", isBlackIcon);
this.isBlackIcon = isBlackIcon;
return this;
}
/**
* MaterialId.
*/
public Builder materialId(String materialId) {
this.putQueryParameter("MaterialId", materialId);
this.materialId = materialId;
return this;
}
/**
* OrderData.
*/
public Builder orderData(String orderData) {
this.putQueryParameter("OrderData", orderData);
this.orderData = orderData;
return this;
}
/**
* Source.
*/
public Builder source(String source) {
this.putQueryParameter("Source", source);
this.source = source;
return this;
}
/**
* TrademarkComment.
*/
public Builder trademarkComment(String trademarkComment) {
this.putQueryParameter("TrademarkComment", trademarkComment);
this.trademarkComment = trademarkComment;
return this;
}
/**
* TrademarkIconOssKey.
*/
public Builder trademarkIconOssKey(String trademarkIconOssKey) {
this.putQueryParameter("TrademarkIconOssKey", trademarkIconOssKey);
this.trademarkIconOssKey = trademarkIconOssKey;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.putQueryParameter("TrademarkName", trademarkName);
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNameType.
*/
public Builder trademarkNameType(String trademarkNameType) {
this.putQueryParameter("TrademarkNameType", trademarkNameType);
this.trademarkNameType = trademarkNameType;
return this;
}
/**
* TrademarkType.
*/
public Builder trademarkType(Integer trademarkType) {
this.putQueryParameter("TrademarkType", trademarkType);
this.trademarkType = trademarkType;
return this;
}
@Override
public ComplementTrademarkApplicationRequest build() {
return new ComplementTrademarkApplicationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ComplementTrademarkApplicationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ComplementTrademarkApplicationResponse} extends {@link TeaModel}
*
* <p>ComplementTrademarkApplicationResponse</p>
*/
public class ComplementTrademarkApplicationResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ComplementTrademarkApplicationResponseBody body;
private ComplementTrademarkApplicationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ComplementTrademarkApplicationResponse 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 ComplementTrademarkApplicationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ComplementTrademarkApplicationResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ComplementTrademarkApplicationResponseBody body);
@Override
ComplementTrademarkApplicationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ComplementTrademarkApplicationResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ComplementTrademarkApplicationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ComplementTrademarkApplicationResponse 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(ComplementTrademarkApplicationResponseBody body) {
this.body = body;
return this;
}
@Override
public ComplementTrademarkApplicationResponse build() {
return new ComplementTrademarkApplicationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ComplementTrademarkApplicationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ComplementTrademarkApplicationResponseBody} extends {@link TeaModel}
*
* <p>ComplementTrademarkApplicationResponseBody</p>
*/
public class ComplementTrademarkApplicationResponseBody extends TeaModel {
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private ComplementTrademarkApplicationResponseBody(Builder builder) {
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static ComplementTrademarkApplicationResponseBody create() {
return builder().build();
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @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 errorMessage;
private String requestId;
private Boolean success;
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
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 ComplementTrademarkApplicationResponseBody build() {
return new ComplementTrademarkApplicationResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ConfirmExpertSolutionRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ConfirmExpertSolutionRequest} extends {@link RequestModel}
*
* <p>ConfirmExpertSolutionRequest</p>
*/
public class ConfirmExpertSolutionRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
@Query
@NameInMap("Note")
private String note;
private ConfirmExpertSolutionRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
this.note = builder.note;
}
public static Builder builder() {
return new Builder();
}
public static ConfirmExpertSolutionRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return note
*/
public String getNote() {
return this.note;
}
public static final class Builder extends Request.Builder<ConfirmExpertSolutionRequest, Builder> {
private String bizId;
private String note;
private Builder() {
super();
}
private Builder(ConfirmExpertSolutionRequest request) {
super(request);
this.bizId = request.bizId;
this.note = request.note;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* Note.
*/
public Builder note(String note) {
this.putQueryParameter("Note", note);
this.note = note;
return this;
}
@Override
public ConfirmExpertSolutionRequest build() {
return new ConfirmExpertSolutionRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ConfirmExpertSolutionResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ConfirmExpertSolutionResponse} extends {@link TeaModel}
*
* <p>ConfirmExpertSolutionResponse</p>
*/
public class ConfirmExpertSolutionResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ConfirmExpertSolutionResponseBody body;
private ConfirmExpertSolutionResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ConfirmExpertSolutionResponse 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 ConfirmExpertSolutionResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ConfirmExpertSolutionResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ConfirmExpertSolutionResponseBody body);
@Override
ConfirmExpertSolutionResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ConfirmExpertSolutionResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ConfirmExpertSolutionResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ConfirmExpertSolutionResponse 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(ConfirmExpertSolutionResponseBody body) {
this.body = body;
return this;
}
@Override
public ConfirmExpertSolutionResponse build() {
return new ConfirmExpertSolutionResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ConfirmExpertSolutionResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ConfirmExpertSolutionResponseBody} extends {@link TeaModel}
*
* <p>ConfirmExpertSolutionResponseBody</p>
*/
public class ConfirmExpertSolutionResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
private ConfirmExpertSolutionResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ConfirmExpertSolutionResponseBody 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 ConfirmExpertSolutionResponseBody build() {
return new ConfirmExpertSolutionResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateApplicantRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateApplicantRequest} extends {@link RequestModel}
*
* <p>CreateApplicantRequest</p>
*/
public class CreateApplicantRequest extends Request {
@Query
@NameInMap("Address")
private String address;
@Query
@NameInMap("ApplicantName")
private String applicantName;
@Query
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@Query
@NameInMap("ApplicantType")
private Integer applicantType;
@Query
@NameInMap("AuthorizationOssKey")
private String authorizationOssKey;
@Query
@NameInMap("BusinessLicenceOssKey")
private String businessLicenceOssKey;
@Query
@NameInMap("CardNumber")
private String cardNumber;
@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("PassportOssKey")
private String passportOssKey;
@Query
@NameInMap("PersonalType")
private Long personalType;
@Query
@NameInMap("PrincipalName")
private Integer principalName;
@Query
@NameInMap("Province")
private String province;
private CreateApplicantRequest(Builder builder) {
super(builder);
this.address = builder.address;
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.authorizationOssKey = builder.authorizationOssKey;
this.businessLicenceOssKey = builder.businessLicenceOssKey;
this.cardNumber = builder.cardNumber;
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.passportOssKey = builder.passportOssKey;
this.personalType = builder.personalType;
this.principalName = builder.principalName;
this.province = builder.province;
}
public static Builder builder() {
return new Builder();
}
public static CreateApplicantRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return authorizationOssKey
*/
public String getAuthorizationOssKey() {
return this.authorizationOssKey;
}
/**
* @return businessLicenceOssKey
*/
public String getBusinessLicenceOssKey() {
return this.businessLicenceOssKey;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @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 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;
}
public static final class Builder extends Request.Builder<CreateApplicantRequest, Builder> {
private String address;
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private String authorizationOssKey;
private String businessLicenceOssKey;
private String cardNumber;
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 passportOssKey;
private Long personalType;
private Integer principalName;
private String province;
private Builder() {
super();
}
private Builder(CreateApplicantRequest request) {
super(request);
this.address = request.address;
this.applicantName = request.applicantName;
this.applicantRegion = request.applicantRegion;
this.applicantType = request.applicantType;
this.authorizationOssKey = request.authorizationOssKey;
this.businessLicenceOssKey = request.businessLicenceOssKey;
this.cardNumber = request.cardNumber;
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.passportOssKey = request.passportOssKey;
this.personalType = request.personalType;
this.principalName = request.principalName;
this.province = request.province;
}
/**
* Address.
*/
public Builder address(String address) {
this.putQueryParameter("Address", address);
this.address = address;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.putQueryParameter("ApplicantName", applicantName);
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.putQueryParameter("ApplicantRegion", applicantRegion);
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.putQueryParameter("ApplicantType", applicantType);
this.applicantType = applicantType;
return this;
}
/**
* AuthorizationOssKey.
*/
public Builder authorizationOssKey(String authorizationOssKey) {
this.putQueryParameter("AuthorizationOssKey", authorizationOssKey);
this.authorizationOssKey = authorizationOssKey;
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;
}
/**
* 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;
}
/**
* 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;
}
@Override
public CreateApplicantRequest build() {
return new CreateApplicantRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateApplicantResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateApplicantResponse} extends {@link TeaModel}
*
* <p>CreateApplicantResponse</p>
*/
public class CreateApplicantResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateApplicantResponseBody body;
private CreateApplicantResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateApplicantResponse 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 CreateApplicantResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateApplicantResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateApplicantResponseBody body);
@Override
CreateApplicantResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateApplicantResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateApplicantResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateApplicantResponse 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(CreateApplicantResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateApplicantResponse build() {
return new CreateApplicantResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateApplicantResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateApplicantResponseBody} extends {@link TeaModel}
*
* <p>CreateApplicantResponseBody</p>
*/
public class CreateApplicantResponseBody extends TeaModel {
@NameInMap("ApplicantId")
private String applicantId;
@NameInMap("RequestId")
private String requestId;
private CreateApplicantResponseBody(Builder builder) {
this.applicantId = builder.applicantId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateApplicantResponseBody create() {
return builder().build();
}
/**
* @return applicantId
*/
public String getApplicantId() {
return this.applicantId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String applicantId;
private String requestId;
/**
* ApplicantId.
*/
public Builder applicantId(String applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateApplicantResponseBody build() {
return new CreateApplicantResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateCommodityOrderRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateCommodityOrderRequest} extends {@link RequestModel}
*
* <p>CreateCommodityOrderRequest</p>
*/
public class CreateCommodityOrderRequest extends Request {
@Query
@NameInMap("AutoPay")
private Boolean autoPay;
@Query
@NameInMap("BizType")
@Validation(required = true)
private String bizType;
@Query
@NameInMap("ChargeType")
private String chargeType;
@Query
@NameInMap("ClientToken")
private String clientToken;
@Query
@NameInMap("CommodityCode")
@Validation(required = true)
private String commodityCode;
@Query
@NameInMap("Components")
@Validation(required = true)
private java.util.Map < String, ? > components;
@Query
@NameInMap("Duration")
@Validation(maximum = 10000, minimum = 1)
private Integer duration;
@Query
@NameInMap("InstanceId")
private String instanceId;
@Query
@NameInMap("OrderParams")
private java.util.Map < String, ? > orderParams;
@Query
@NameInMap("OrderType")
private String orderType;
@Query
@NameInMap("PricingCycle")
private String pricingCycle;
@Query
@NameInMap("Quantity")
@Validation(maximum = 10000, minimum = 1)
private Integer quantity;
@Query
@NameInMap("SpecCode")
private String specCode;
@Query
@NameInMap("UserId")
private String userId;
private CreateCommodityOrderRequest(Builder builder) {
super(builder);
this.autoPay = builder.autoPay;
this.bizType = builder.bizType;
this.chargeType = builder.chargeType;
this.clientToken = builder.clientToken;
this.commodityCode = builder.commodityCode;
this.components = builder.components;
this.duration = builder.duration;
this.instanceId = builder.instanceId;
this.orderParams = builder.orderParams;
this.orderType = builder.orderType;
this.pricingCycle = builder.pricingCycle;
this.quantity = builder.quantity;
this.specCode = builder.specCode;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static CreateCommodityOrderRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return autoPay
*/
public Boolean getAutoPay() {
return this.autoPay;
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
/**
* @return chargeType
*/
public String getChargeType() {
return this.chargeType;
}
/**
* @return clientToken
*/
public String getClientToken() {
return this.clientToken;
}
/**
* @return commodityCode
*/
public String getCommodityCode() {
return this.commodityCode;
}
/**
* @return components
*/
public java.util.Map < String, ? > getComponents() {
return this.components;
}
/**
* @return duration
*/
public Integer getDuration() {
return this.duration;
}
/**
* @return instanceId
*/
public String getInstanceId() {
return this.instanceId;
}
/**
* @return orderParams
*/
public java.util.Map < String, ? > getOrderParams() {
return this.orderParams;
}
/**
* @return orderType
*/
public String getOrderType() {
return this.orderType;
}
/**
* @return pricingCycle
*/
public String getPricingCycle() {
return this.pricingCycle;
}
/**
* @return quantity
*/
public Integer getQuantity() {
return this.quantity;
}
/**
* @return specCode
*/
public String getSpecCode() {
return this.specCode;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder extends Request.Builder<CreateCommodityOrderRequest, Builder> {
private Boolean autoPay;
private String bizType;
private String chargeType;
private String clientToken;
private String commodityCode;
private java.util.Map < String, ? > components;
private Integer duration;
private String instanceId;
private java.util.Map < String, ? > orderParams;
private String orderType;
private String pricingCycle;
private Integer quantity;
private String specCode;
private String userId;
private Builder() {
super();
}
private Builder(CreateCommodityOrderRequest request) {
super(request);
this.autoPay = request.autoPay;
this.bizType = request.bizType;
this.chargeType = request.chargeType;
this.clientToken = request.clientToken;
this.commodityCode = request.commodityCode;
this.components = request.components;
this.duration = request.duration;
this.instanceId = request.instanceId;
this.orderParams = request.orderParams;
this.orderType = request.orderType;
this.pricingCycle = request.pricingCycle;
this.quantity = request.quantity;
this.specCode = request.specCode;
this.userId = request.userId;
}
/**
* AutoPay.
*/
public Builder autoPay(Boolean autoPay) {
this.putQueryParameter("AutoPay", autoPay);
this.autoPay = autoPay;
return this;
}
/**
* BizType.
*/
public Builder bizType(String bizType) {
this.putQueryParameter("BizType", bizType);
this.bizType = bizType;
return this;
}
/**
* ChargeType.
*/
public Builder chargeType(String chargeType) {
this.putQueryParameter("ChargeType", chargeType);
this.chargeType = chargeType;
return this;
}
/**
* ClientToken.
*/
public Builder clientToken(String clientToken) {
this.putQueryParameter("ClientToken", clientToken);
this.clientToken = clientToken;
return this;
}
/**
* CommodityCode.
*/
public Builder commodityCode(String commodityCode) {
this.putQueryParameter("CommodityCode", commodityCode);
this.commodityCode = commodityCode;
return this;
}
/**
* Components.
*/
public Builder components(java.util.Map < String, ? > components) {
String componentsShrink = shrink(components, "Components", "json");
this.putQueryParameter("Components", componentsShrink);
this.components = components;
return this;
}
/**
* Duration.
*/
public Builder duration(Integer duration) {
this.putQueryParameter("Duration", duration);
this.duration = duration;
return this;
}
/**
* InstanceId.
*/
public Builder instanceId(String instanceId) {
this.putQueryParameter("InstanceId", instanceId);
this.instanceId = instanceId;
return this;
}
/**
* OrderParams.
*/
public Builder orderParams(java.util.Map < String, ? > orderParams) {
String orderParamsShrink = shrink(orderParams, "OrderParams", "json");
this.putQueryParameter("OrderParams", orderParamsShrink);
this.orderParams = orderParams;
return this;
}
/**
* OrderType.
*/
public Builder orderType(String orderType) {
this.putQueryParameter("OrderType", orderType);
this.orderType = orderType;
return this;
}
/**
* PricingCycle.
*/
public Builder pricingCycle(String pricingCycle) {
this.putQueryParameter("PricingCycle", pricingCycle);
this.pricingCycle = pricingCycle;
return this;
}
/**
* Quantity.
*/
public Builder quantity(Integer quantity) {
this.putQueryParameter("Quantity", quantity);
this.quantity = quantity;
return this;
}
/**
* SpecCode.
*/
public Builder specCode(String specCode) {
this.putQueryParameter("SpecCode", specCode);
this.specCode = specCode;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.putQueryParameter("UserId", userId);
this.userId = userId;
return this;
}
@Override
public CreateCommodityOrderRequest build() {
return new CreateCommodityOrderRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateCommodityOrderResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateCommodityOrderResponse} extends {@link TeaModel}
*
* <p>CreateCommodityOrderResponse</p>
*/
public class CreateCommodityOrderResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateCommodityOrderResponseBody body;
private CreateCommodityOrderResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateCommodityOrderResponse 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 CreateCommodityOrderResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateCommodityOrderResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateCommodityOrderResponseBody body);
@Override
CreateCommodityOrderResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateCommodityOrderResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateCommodityOrderResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateCommodityOrderResponse 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(CreateCommodityOrderResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateCommodityOrderResponse build() {
return new CreateCommodityOrderResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateCommodityOrderResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateCommodityOrderResponseBody} extends {@link TeaModel}
*
* <p>CreateCommodityOrderResponseBody</p>
*/
public class CreateCommodityOrderResponseBody extends TeaModel {
@NameInMap("Data")
private java.util.List < Long > data;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private CreateCommodityOrderResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static CreateCommodityOrderResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List < Long > getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private java.util.List < Long > data;
private String requestId;
private Boolean success;
/**
* Data.
*/
public Builder data(java.util.List < Long > data) {
this.data = data;
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 CreateCommodityOrderResponseBody build() {
return new CreateCommodityOrderResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateOrderRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateOrderRequest} extends {@link RequestModel}
*
* <p>CreateOrderRequest</p>
*/
public class CreateOrderRequest extends Request {
@Query
@NameInMap("AgreementId")
private String agreementId;
@Query
@NameInMap("ApplicantId")
private String applicantId;
@Query
@NameInMap("ApplicationType")
@Validation(maximum = 20, minimum = 1)
private Integer applicationType;
@Query
@NameInMap("AuthorizationOssKey")
private String authorizationOssKey;
@Query
@NameInMap("AutoPay")
@Validation(required = true)
private Boolean autoPay;
@Query
@NameInMap("BlackAndWhiteIcon")
private String blackAndWhiteIcon;
@Query
@NameInMap("Channel")
private String channel;
@Query
@NameInMap("Classifications")
private String classifications;
@Query
@NameInMap("IdempotentId")
private String idempotentId;
@Query
@NameInMap("LegalNoticeKey")
private String legalNoticeKey;
@Query
@NameInMap("PayType")
private String payType;
@Query
@NameInMap("PaymentCallback")
private String paymentCallback;
@Query
@NameInMap("PrincipalName")
@Validation(maximum = 10, minimum = 1)
private Integer principalName;
@Query
@NameInMap("Source")
private String source;
@Query
@NameInMap("TrademarkComment")
private String trademarkComment;
@Query
@NameInMap("TrademarkIcon")
@Validation(required = true)
private String trademarkIcon;
@Query
@NameInMap("TrademarkName")
@Validation(required = true)
private String trademarkName;
@Query
@NameInMap("TrademarkNameType")
private String trademarkNameType;
private CreateOrderRequest(Builder builder) {
super(builder);
this.agreementId = builder.agreementId;
this.applicantId = builder.applicantId;
this.applicationType = builder.applicationType;
this.authorizationOssKey = builder.authorizationOssKey;
this.autoPay = builder.autoPay;
this.blackAndWhiteIcon = builder.blackAndWhiteIcon;
this.channel = builder.channel;
this.classifications = builder.classifications;
this.idempotentId = builder.idempotentId;
this.legalNoticeKey = builder.legalNoticeKey;
this.payType = builder.payType;
this.paymentCallback = builder.paymentCallback;
this.principalName = builder.principalName;
this.source = builder.source;
this.trademarkComment = builder.trademarkComment;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNameType = builder.trademarkNameType;
}
public static Builder builder() {
return new Builder();
}
public static CreateOrderRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return agreementId
*/
public String getAgreementId() {
return this.agreementId;
}
/**
* @return applicantId
*/
public String getApplicantId() {
return this.applicantId;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationOssKey
*/
public String getAuthorizationOssKey() {
return this.authorizationOssKey;
}
/**
* @return autoPay
*/
public Boolean getAutoPay() {
return this.autoPay;
}
/**
* @return blackAndWhiteIcon
*/
public String getBlackAndWhiteIcon() {
return this.blackAndWhiteIcon;
}
/**
* @return channel
*/
public String getChannel() {
return this.channel;
}
/**
* @return classifications
*/
public String getClassifications() {
return this.classifications;
}
/**
* @return idempotentId
*/
public String getIdempotentId() {
return this.idempotentId;
}
/**
* @return legalNoticeKey
*/
public String getLegalNoticeKey() {
return this.legalNoticeKey;
}
/**
* @return payType
*/
public String getPayType() {
return this.payType;
}
/**
* @return paymentCallback
*/
public String getPaymentCallback() {
return this.paymentCallback;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return source
*/
public String getSource() {
return this.source;
}
/**
* @return trademarkComment
*/
public String getTrademarkComment() {
return this.trademarkComment;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNameType
*/
public String getTrademarkNameType() {
return this.trademarkNameType;
}
public static final class Builder extends Request.Builder<CreateOrderRequest, Builder> {
private String agreementId;
private String applicantId;
private Integer applicationType;
private String authorizationOssKey;
private Boolean autoPay;
private String blackAndWhiteIcon;
private String channel;
private String classifications;
private String idempotentId;
private String legalNoticeKey;
private String payType;
private String paymentCallback;
private Integer principalName;
private String source;
private String trademarkComment;
private String trademarkIcon;
private String trademarkName;
private String trademarkNameType;
private Builder() {
super();
}
private Builder(CreateOrderRequest request) {
super(request);
this.agreementId = request.agreementId;
this.applicantId = request.applicantId;
this.applicationType = request.applicationType;
this.authorizationOssKey = request.authorizationOssKey;
this.autoPay = request.autoPay;
this.blackAndWhiteIcon = request.blackAndWhiteIcon;
this.channel = request.channel;
this.classifications = request.classifications;
this.idempotentId = request.idempotentId;
this.legalNoticeKey = request.legalNoticeKey;
this.payType = request.payType;
this.paymentCallback = request.paymentCallback;
this.principalName = request.principalName;
this.source = request.source;
this.trademarkComment = request.trademarkComment;
this.trademarkIcon = request.trademarkIcon;
this.trademarkName = request.trademarkName;
this.trademarkNameType = request.trademarkNameType;
}
/**
* AgreementId.
*/
public Builder agreementId(String agreementId) {
this.putQueryParameter("AgreementId", agreementId);
this.agreementId = agreementId;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(String applicantId) {
this.putQueryParameter("ApplicantId", applicantId);
this.applicantId = applicantId;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.putQueryParameter("ApplicationType", applicationType);
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationOssKey.
*/
public Builder authorizationOssKey(String authorizationOssKey) {
this.putQueryParameter("AuthorizationOssKey", authorizationOssKey);
this.authorizationOssKey = authorizationOssKey;
return this;
}
/**
* AutoPay.
*/
public Builder autoPay(Boolean autoPay) {
this.putQueryParameter("AutoPay", autoPay);
this.autoPay = autoPay;
return this;
}
/**
* BlackAndWhiteIcon.
*/
public Builder blackAndWhiteIcon(String blackAndWhiteIcon) {
this.putQueryParameter("BlackAndWhiteIcon", blackAndWhiteIcon);
this.blackAndWhiteIcon = blackAndWhiteIcon;
return this;
}
/**
* Channel.
*/
public Builder channel(String channel) {
this.putQueryParameter("Channel", channel);
this.channel = channel;
return this;
}
/**
* Classifications.
*/
public Builder classifications(String classifications) {
this.putQueryParameter("Classifications", classifications);
this.classifications = classifications;
return this;
}
/**
* IdempotentId.
*/
public Builder idempotentId(String idempotentId) {
this.putQueryParameter("IdempotentId", idempotentId);
this.idempotentId = idempotentId;
return this;
}
/**
* LegalNoticeKey.
*/
public Builder legalNoticeKey(String legalNoticeKey) {
this.putQueryParameter("LegalNoticeKey", legalNoticeKey);
this.legalNoticeKey = legalNoticeKey;
return this;
}
/**
* PayType.
*/
public Builder payType(String payType) {
this.putQueryParameter("PayType", payType);
this.payType = payType;
return this;
}
/**
* PaymentCallback.
*/
public Builder paymentCallback(String paymentCallback) {
this.putQueryParameter("PaymentCallback", paymentCallback);
this.paymentCallback = paymentCallback;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.putQueryParameter("PrincipalName", principalName);
this.principalName = principalName;
return this;
}
/**
* Source.
*/
public Builder source(String source) {
this.putQueryParameter("Source", source);
this.source = source;
return this;
}
/**
* TrademarkComment.
*/
public Builder trademarkComment(String trademarkComment) {
this.putQueryParameter("TrademarkComment", trademarkComment);
this.trademarkComment = trademarkComment;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.putQueryParameter("TrademarkIcon", trademarkIcon);
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.putQueryParameter("TrademarkName", trademarkName);
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNameType.
*/
public Builder trademarkNameType(String trademarkNameType) {
this.putQueryParameter("TrademarkNameType", trademarkNameType);
this.trademarkNameType = trademarkNameType;
return this;
}
@Override
public CreateOrderRequest build() {
return new CreateOrderRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateOrderResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateOrderResponse} extends {@link TeaModel}
*
* <p>CreateOrderResponse</p>
*/
public class CreateOrderResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateOrderResponseBody body;
private CreateOrderResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateOrderResponse 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 CreateOrderResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateOrderResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateOrderResponseBody body);
@Override
CreateOrderResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateOrderResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateOrderResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateOrderResponse 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(CreateOrderResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateOrderResponse build() {
return new CreateOrderResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateOrderResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateOrderResponseBody} extends {@link TeaModel}
*
* <p>CreateOrderResponseBody</p>
*/
public class CreateOrderResponseBody extends TeaModel {
@NameInMap("Message")
private String message;
@NameInMap("OrderIds")
private java.util.Map < String, ? > orderIds;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private CreateOrderResponseBody(Builder builder) {
this.message = builder.message;
this.orderIds = builder.orderIds;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static CreateOrderResponseBody create() {
return builder().build();
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return orderIds
*/
public java.util.Map < String, ? > getOrderIds() {
return this.orderIds;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String message;
private java.util.Map < String, ? > orderIds;
private String requestId;
private Boolean success;
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* OrderIds.
*/
public Builder orderIds(java.util.Map < String, ? > orderIds) {
this.orderIds = orderIds;
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 CreateOrderResponseBody build() {
return new CreateOrderResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateTrademarkApplicationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateTrademarkApplicationRequest} extends {@link RequestModel}
*
* <p>CreateTrademarkApplicationRequest</p>
*/
public class CreateTrademarkApplicationRequest extends Request {
@Query
@NameInMap("AgreementId")
private String agreementId;
@Query
@NameInMap("ApplicantId")
private String applicantId;
@Query
@NameInMap("ApplicationType")
private Integer applicationType;
@Query
@NameInMap("AuthorizationOssKey")
private String authorizationOssKey;
@Query
@NameInMap("AutoPay")
@Validation(required = true)
private Boolean autoPay;
@Query
@NameInMap("BlackAndWhiteIcon")
private String blackAndWhiteIcon;
@Query
@NameInMap("Channel")
private String channel;
@Query
@NameInMap("Classifications")
private String classifications;
@Query
@NameInMap("IdempotentId")
private String idempotentId;
@Query
@NameInMap("LegalNoticeKey")
private String legalNoticeKey;
@Query
@NameInMap("PrincipalName")
private Integer principalName;
@Query
@NameInMap("Source")
private String source;
@Query
@NameInMap("TrademarkComment")
private String trademarkComment;
@Query
@NameInMap("TrademarkIcon")
@Validation(required = true)
private String trademarkIcon;
@Query
@NameInMap("TrademarkName")
@Validation(required = true)
private String trademarkName;
@Query
@NameInMap("TrademarkNameType")
private String trademarkNameType;
private CreateTrademarkApplicationRequest(Builder builder) {
super(builder);
this.agreementId = builder.agreementId;
this.applicantId = builder.applicantId;
this.applicationType = builder.applicationType;
this.authorizationOssKey = builder.authorizationOssKey;
this.autoPay = builder.autoPay;
this.blackAndWhiteIcon = builder.blackAndWhiteIcon;
this.channel = builder.channel;
this.classifications = builder.classifications;
this.idempotentId = builder.idempotentId;
this.legalNoticeKey = builder.legalNoticeKey;
this.principalName = builder.principalName;
this.source = builder.source;
this.trademarkComment = builder.trademarkComment;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNameType = builder.trademarkNameType;
}
public static Builder builder() {
return new Builder();
}
public static CreateTrademarkApplicationRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return agreementId
*/
public String getAgreementId() {
return this.agreementId;
}
/**
* @return applicantId
*/
public String getApplicantId() {
return this.applicantId;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationOssKey
*/
public String getAuthorizationOssKey() {
return this.authorizationOssKey;
}
/**
* @return autoPay
*/
public Boolean getAutoPay() {
return this.autoPay;
}
/**
* @return blackAndWhiteIcon
*/
public String getBlackAndWhiteIcon() {
return this.blackAndWhiteIcon;
}
/**
* @return channel
*/
public String getChannel() {
return this.channel;
}
/**
* @return classifications
*/
public String getClassifications() {
return this.classifications;
}
/**
* @return idempotentId
*/
public String getIdempotentId() {
return this.idempotentId;
}
/**
* @return legalNoticeKey
*/
public String getLegalNoticeKey() {
return this.legalNoticeKey;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return source
*/
public String getSource() {
return this.source;
}
/**
* @return trademarkComment
*/
public String getTrademarkComment() {
return this.trademarkComment;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNameType
*/
public String getTrademarkNameType() {
return this.trademarkNameType;
}
public static final class Builder extends Request.Builder<CreateTrademarkApplicationRequest, Builder> {
private String agreementId;
private String applicantId;
private Integer applicationType;
private String authorizationOssKey;
private Boolean autoPay;
private String blackAndWhiteIcon;
private String channel;
private String classifications;
private String idempotentId;
private String legalNoticeKey;
private Integer principalName;
private String source;
private String trademarkComment;
private String trademarkIcon;
private String trademarkName;
private String trademarkNameType;
private Builder() {
super();
}
private Builder(CreateTrademarkApplicationRequest request) {
super(request);
this.agreementId = request.agreementId;
this.applicantId = request.applicantId;
this.applicationType = request.applicationType;
this.authorizationOssKey = request.authorizationOssKey;
this.autoPay = request.autoPay;
this.blackAndWhiteIcon = request.blackAndWhiteIcon;
this.channel = request.channel;
this.classifications = request.classifications;
this.idempotentId = request.idempotentId;
this.legalNoticeKey = request.legalNoticeKey;
this.principalName = request.principalName;
this.source = request.source;
this.trademarkComment = request.trademarkComment;
this.trademarkIcon = request.trademarkIcon;
this.trademarkName = request.trademarkName;
this.trademarkNameType = request.trademarkNameType;
}
/**
* AgreementId.
*/
public Builder agreementId(String agreementId) {
this.putQueryParameter("AgreementId", agreementId);
this.agreementId = agreementId;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(String applicantId) {
this.putQueryParameter("ApplicantId", applicantId);
this.applicantId = applicantId;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.putQueryParameter("ApplicationType", applicationType);
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationOssKey.
*/
public Builder authorizationOssKey(String authorizationOssKey) {
this.putQueryParameter("AuthorizationOssKey", authorizationOssKey);
this.authorizationOssKey = authorizationOssKey;
return this;
}
/**
* AutoPay.
*/
public Builder autoPay(Boolean autoPay) {
this.putQueryParameter("AutoPay", autoPay);
this.autoPay = autoPay;
return this;
}
/**
* BlackAndWhiteIcon.
*/
public Builder blackAndWhiteIcon(String blackAndWhiteIcon) {
this.putQueryParameter("BlackAndWhiteIcon", blackAndWhiteIcon);
this.blackAndWhiteIcon = blackAndWhiteIcon;
return this;
}
/**
* Channel.
*/
public Builder channel(String channel) {
this.putQueryParameter("Channel", channel);
this.channel = channel;
return this;
}
/**
* Classifications.
*/
public Builder classifications(String classifications) {
this.putQueryParameter("Classifications", classifications);
this.classifications = classifications;
return this;
}
/**
* IdempotentId.
*/
public Builder idempotentId(String idempotentId) {
this.putQueryParameter("IdempotentId", idempotentId);
this.idempotentId = idempotentId;
return this;
}
/**
* LegalNoticeKey.
*/
public Builder legalNoticeKey(String legalNoticeKey) {
this.putQueryParameter("LegalNoticeKey", legalNoticeKey);
this.legalNoticeKey = legalNoticeKey;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.putQueryParameter("PrincipalName", principalName);
this.principalName = principalName;
return this;
}
/**
* Source.
*/
public Builder source(String source) {
this.putQueryParameter("Source", source);
this.source = source;
return this;
}
/**
* TrademarkComment.
*/
public Builder trademarkComment(String trademarkComment) {
this.putQueryParameter("TrademarkComment", trademarkComment);
this.trademarkComment = trademarkComment;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.putQueryParameter("TrademarkIcon", trademarkIcon);
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.putQueryParameter("TrademarkName", trademarkName);
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNameType.
*/
public Builder trademarkNameType(String trademarkNameType) {
this.putQueryParameter("TrademarkNameType", trademarkNameType);
this.trademarkNameType = trademarkNameType;
return this;
}
@Override
public CreateTrademarkApplicationRequest build() {
return new CreateTrademarkApplicationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateTrademarkApplicationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateTrademarkApplicationResponse} extends {@link TeaModel}
*
* <p>CreateTrademarkApplicationResponse</p>
*/
public class CreateTrademarkApplicationResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateTrademarkApplicationResponseBody body;
private CreateTrademarkApplicationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateTrademarkApplicationResponse 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 CreateTrademarkApplicationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateTrademarkApplicationResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateTrademarkApplicationResponseBody body);
@Override
CreateTrademarkApplicationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateTrademarkApplicationResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateTrademarkApplicationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateTrademarkApplicationResponse 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(CreateTrademarkApplicationResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateTrademarkApplicationResponse build() {
return new CreateTrademarkApplicationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/CreateTrademarkApplicationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateTrademarkApplicationResponseBody} extends {@link TeaModel}
*
* <p>CreateTrademarkApplicationResponseBody</p>
*/
public class CreateTrademarkApplicationResponseBody extends TeaModel {
@NameInMap("Message")
private String message;
@NameInMap("OrderId")
private Long orderId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private CreateTrademarkApplicationResponseBody(Builder builder) {
this.message = builder.message;
this.orderId = builder.orderId;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static CreateTrademarkApplicationResponseBody create() {
return builder().build();
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return orderId
*/
public Long getOrderId() {
return this.orderId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String message;
private Long orderId;
private String requestId;
private Boolean success;
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* OrderId.
*/
public Builder orderId(Long orderId) {
this.orderId = orderId;
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 CreateTrademarkApplicationResponseBody build() {
return new CreateTrademarkApplicationResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DeleteSearchConditionRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteSearchConditionRequest} extends {@link RequestModel}
*
* <p>DeleteSearchConditionRequest</p>
*/
public class DeleteSearchConditionRequest extends Request {
@Query
@NameInMap("ConditionId")
@Validation(required = true, maximum = 2147483647)
private Long conditionId;
@Query
@NameInMap("SessionId")
private String sessionId;
@Query
@NameInMap("Umid")
private String umid;
private DeleteSearchConditionRequest(Builder builder) {
super(builder);
this.conditionId = builder.conditionId;
this.sessionId = builder.sessionId;
this.umid = builder.umid;
}
public static Builder builder() {
return new Builder();
}
public static DeleteSearchConditionRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return conditionId
*/
public Long getConditionId() {
return this.conditionId;
}
/**
* @return sessionId
*/
public String getSessionId() {
return this.sessionId;
}
/**
* @return umid
*/
public String getUmid() {
return this.umid;
}
public static final class Builder extends Request.Builder<DeleteSearchConditionRequest, Builder> {
private Long conditionId;
private String sessionId;
private String umid;
private Builder() {
super();
}
private Builder(DeleteSearchConditionRequest request) {
super(request);
this.conditionId = request.conditionId;
this.sessionId = request.sessionId;
this.umid = request.umid;
}
/**
* ConditionId.
*/
public Builder conditionId(Long conditionId) {
this.putQueryParameter("ConditionId", conditionId);
this.conditionId = conditionId;
return this;
}
/**
* SessionId.
*/
public Builder sessionId(String sessionId) {
this.putQueryParameter("SessionId", sessionId);
this.sessionId = sessionId;
return this;
}
/**
* Umid.
*/
public Builder umid(String umid) {
this.putQueryParameter("Umid", umid);
this.umid = umid;
return this;
}
@Override
public DeleteSearchConditionRequest build() {
return new DeleteSearchConditionRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DeleteSearchConditionResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteSearchConditionResponse} extends {@link TeaModel}
*
* <p>DeleteSearchConditionResponse</p>
*/
public class DeleteSearchConditionResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DeleteSearchConditionResponseBody body;
private DeleteSearchConditionResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DeleteSearchConditionResponse 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 DeleteSearchConditionResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DeleteSearchConditionResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DeleteSearchConditionResponseBody body);
@Override
DeleteSearchConditionResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DeleteSearchConditionResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DeleteSearchConditionResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DeleteSearchConditionResponse 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(DeleteSearchConditionResponseBody body) {
this.body = body;
return this;
}
@Override
public DeleteSearchConditionResponse build() {
return new DeleteSearchConditionResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DeleteSearchConditionResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteSearchConditionResponseBody} extends {@link TeaModel}
*
* <p>DeleteSearchConditionResponseBody</p>
*/
public class DeleteSearchConditionResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private DeleteSearchConditionResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DeleteSearchConditionResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DeleteSearchConditionResponseBody build() {
return new DeleteSearchConditionResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeAdminTrademarkApplicationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeAdminTrademarkApplicationRequest} extends {@link RequestModel}
*
* <p>DescribeAdminTrademarkApplicationRequest</p>
*/
public class DescribeAdminTrademarkApplicationRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private DescribeAdminTrademarkApplicationRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAdminTrademarkApplicationRequest 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<DescribeAdminTrademarkApplicationRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(DescribeAdminTrademarkApplicationRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public DescribeAdminTrademarkApplicationRequest build() {
return new DescribeAdminTrademarkApplicationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeAdminTrademarkApplicationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeAdminTrademarkApplicationResponse} extends {@link TeaModel}
*
* <p>DescribeAdminTrademarkApplicationResponse</p>
*/
public class DescribeAdminTrademarkApplicationResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribeAdminTrademarkApplicationResponseBody body;
private DescribeAdminTrademarkApplicationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeAdminTrademarkApplicationResponse 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 DescribeAdminTrademarkApplicationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeAdminTrademarkApplicationResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeAdminTrademarkApplicationResponseBody body);
@Override
DescribeAdminTrademarkApplicationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeAdminTrademarkApplicationResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribeAdminTrademarkApplicationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeAdminTrademarkApplicationResponse 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(DescribeAdminTrademarkApplicationResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeAdminTrademarkApplicationResponse build() {
return new DescribeAdminTrademarkApplicationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeAdminTrademarkApplicationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeAdminTrademarkApplicationResponseBody} extends {@link TeaModel}
*
* <p>DescribeAdminTrademarkApplicationResponseBody</p>
*/
public class DescribeAdminTrademarkApplicationResponseBody extends TeaModel {
@NameInMap("AcceptUrl")
private String acceptUrl;
@NameInMap("Applicant")
private Applicant applicant;
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicationStatus")
private Integer applicationStatus;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BizId")
private String bizId;
@NameInMap("BlackAndWhiteIconUrl")
private String blackAndWhiteIconUrl;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("ExtendInfo")
private java.util.Map < String, ? > extendInfo;
@NameInMap("FirstClassification")
private FirstClassification firstClassification;
@NameInMap("JudgeResultUrls")
private java.util.List < String > judgeResultUrls;
@NameInMap("Note")
private String note;
@NameInMap("OrderId")
private String orderId;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("ReceiptUrls")
private java.util.List < String > receiptUrls;
@NameInMap("RecvUserLogistics")
private String recvUserLogistics;
@NameInMap("RequestId")
private String requestId;
@NameInMap("SendSbjLogistics")
private String sendSbjLogistics;
@NameInMap("SendUserLogistics")
private String sendUserLogistics;
@NameInMap("ServicePrice")
private Float servicePrice;
@NameInMap("Supplements")
private java.util.List < Supplements> supplements;
@NameInMap("ThirdClassifications")
private java.util.List < ThirdClassifications> thirdClassifications;
@NameInMap("TotalPrice")
private Float totalPrice;
@NameInMap("TrademarkIcon")
private String trademarkIcon;
@NameInMap("TrademarkName")
private String trademarkName;
@NameInMap("TrademarkNameType")
private Integer trademarkNameType;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UpdateTime")
private Long updateTime;
@NameInMap("UserId")
private String userId;
private DescribeAdminTrademarkApplicationResponseBody(Builder builder) {
this.acceptUrl = builder.acceptUrl;
this.applicant = builder.applicant;
this.applicantId = builder.applicantId;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.authorizationUrl = builder.authorizationUrl;
this.bizId = builder.bizId;
this.blackAndWhiteIconUrl = builder.blackAndWhiteIconUrl;
this.createTime = builder.createTime;
this.extendInfo = builder.extendInfo;
this.firstClassification = builder.firstClassification;
this.judgeResultUrls = builder.judgeResultUrls;
this.note = builder.note;
this.orderId = builder.orderId;
this.orderPrice = builder.orderPrice;
this.principalName = builder.principalName;
this.receiptUrls = builder.receiptUrls;
this.recvUserLogistics = builder.recvUserLogistics;
this.requestId = builder.requestId;
this.sendSbjLogistics = builder.sendSbjLogistics;
this.sendUserLogistics = builder.sendUserLogistics;
this.servicePrice = builder.servicePrice;
this.supplements = builder.supplements;
this.thirdClassifications = builder.thirdClassifications;
this.totalPrice = builder.totalPrice;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNameType = builder.trademarkNameType;
this.trademarkNumber = builder.trademarkNumber;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAdminTrademarkApplicationResponseBody create() {
return builder().build();
}
/**
* @return acceptUrl
*/
public String getAcceptUrl() {
return this.acceptUrl;
}
/**
* @return applicant
*/
public Applicant getApplicant() {
return this.applicant;
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return blackAndWhiteIconUrl
*/
public String getBlackAndWhiteIconUrl() {
return this.blackAndWhiteIconUrl;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return extendInfo
*/
public java.util.Map < String, ? > getExtendInfo() {
return this.extendInfo;
}
/**
* @return firstClassification
*/
public FirstClassification getFirstClassification() {
return this.firstClassification;
}
/**
* @return judgeResultUrls
*/
public java.util.List < String > getJudgeResultUrls() {
return this.judgeResultUrls;
}
/**
* @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 receiptUrls
*/
public java.util.List < String > getReceiptUrls() {
return this.receiptUrls;
}
/**
* @return recvUserLogistics
*/
public String getRecvUserLogistics() {
return this.recvUserLogistics;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return sendSbjLogistics
*/
public String getSendSbjLogistics() {
return this.sendSbjLogistics;
}
/**
* @return sendUserLogistics
*/
public String getSendUserLogistics() {
return this.sendUserLogistics;
}
/**
* @return servicePrice
*/
public Float getServicePrice() {
return this.servicePrice;
}
/**
* @return supplements
*/
public java.util.List < Supplements> getSupplements() {
return this.supplements;
}
/**
* @return thirdClassifications
*/
public java.util.List < ThirdClassifications> getThirdClassifications() {
return this.thirdClassifications;
}
/**
* @return totalPrice
*/
public Float getTotalPrice() {
return this.totalPrice;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNameType
*/
public Integer getTrademarkNameType() {
return this.trademarkNameType;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder {
private String acceptUrl;
private Applicant applicant;
private Long applicantId;
private Integer applicationStatus;
private Integer applicationType;
private String authorizationUrl;
private String bizId;
private String blackAndWhiteIconUrl;
private Long createTime;
private java.util.Map < String, ? > extendInfo;
private FirstClassification firstClassification;
private java.util.List < String > judgeResultUrls;
private String note;
private String orderId;
private Float orderPrice;
private Integer principalName;
private java.util.List < String > receiptUrls;
private String recvUserLogistics;
private String requestId;
private String sendSbjLogistics;
private String sendUserLogistics;
private Float servicePrice;
private java.util.List < Supplements> supplements;
private java.util.List < ThirdClassifications> thirdClassifications;
private Float totalPrice;
private String trademarkIcon;
private String trademarkName;
private Integer trademarkNameType;
private String trademarkNumber;
private Long updateTime;
private String userId;
/**
* AcceptUrl.
*/
public Builder acceptUrl(String acceptUrl) {
this.acceptUrl = acceptUrl;
return this;
}
/**
* Applicant.
*/
public Builder applicant(Applicant applicant) {
this.applicant = applicant;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* BlackAndWhiteIconUrl.
*/
public Builder blackAndWhiteIconUrl(String blackAndWhiteIconUrl) {
this.blackAndWhiteIconUrl = blackAndWhiteIconUrl;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* ExtendInfo.
*/
public Builder extendInfo(java.util.Map < String, ? > extendInfo) {
this.extendInfo = extendInfo;
return this;
}
/**
* FirstClassification.
*/
public Builder firstClassification(FirstClassification firstClassification) {
this.firstClassification = firstClassification;
return this;
}
/**
* JudgeResultUrls.
*/
public Builder judgeResultUrls(java.util.List < String > judgeResultUrls) {
this.judgeResultUrls = judgeResultUrls;
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;
}
/**
* ReceiptUrls.
*/
public Builder receiptUrls(java.util.List < String > receiptUrls) {
this.receiptUrls = receiptUrls;
return this;
}
/**
* RecvUserLogistics.
*/
public Builder recvUserLogistics(String recvUserLogistics) {
this.recvUserLogistics = recvUserLogistics;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SendSbjLogistics.
*/
public Builder sendSbjLogistics(String sendSbjLogistics) {
this.sendSbjLogistics = sendSbjLogistics;
return this;
}
/**
* SendUserLogistics.
*/
public Builder sendUserLogistics(String sendUserLogistics) {
this.sendUserLogistics = sendUserLogistics;
return this;
}
/**
* ServicePrice.
*/
public Builder servicePrice(Float servicePrice) {
this.servicePrice = servicePrice;
return this;
}
/**
* Supplements.
*/
public Builder supplements(java.util.List < Supplements> supplements) {
this.supplements = supplements;
return this;
}
/**
* ThirdClassifications.
*/
public Builder thirdClassifications(java.util.List < ThirdClassifications> thirdClassifications) {
this.thirdClassifications = thirdClassifications;
return this;
}
/**
* TotalPrice.
*/
public Builder totalPrice(Float totalPrice) {
this.totalPrice = totalPrice;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNameType.
*/
public Builder trademarkNameType(Integer trademarkNameType) {
this.trademarkNameType = trademarkNameType;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.userId = userId;
return this;
}
public DescribeAdminTrademarkApplicationResponseBody build() {
return new DescribeAdminTrademarkApplicationResponseBody(this);
}
}
public static class Applicant extends TeaModel {
@NameInMap("Address")
private String address;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@NameInMap("ApplicantType")
private Integer applicantType;
@NameInMap("AuditStatus")
private Integer auditStatus;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BusinessLicenceUrl")
private String businessLicenceUrl;
@NameInMap("CardNumber")
private String cardNumber;
@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("IdCardUrl")
private String idCardUrl;
@NameInMap("LegalNoticeUrl")
private String legalNoticeUrl;
@NameInMap("PassportUrl")
private String passportUrl;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("Province")
private String province;
private Applicant(Builder builder) {
this.address = builder.address;
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.auditStatus = builder.auditStatus;
this.authorizationUrl = builder.authorizationUrl;
this.businessLicenceUrl = builder.businessLicenceUrl;
this.cardNumber = builder.cardNumber;
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.idCardUrl = builder.idCardUrl;
this.legalNoticeUrl = builder.legalNoticeUrl;
this.passportUrl = builder.passportUrl;
this.principalName = builder.principalName;
this.province = builder.province;
}
public static Builder builder() {
return new Builder();
}
public static Applicant create() {
return builder().build();
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return auditStatus
*/
public Integer getAuditStatus() {
return this.auditStatus;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return businessLicenceUrl
*/
public String getBusinessLicenceUrl() {
return this.businessLicenceUrl;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @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 idCardUrl
*/
public String getIdCardUrl() {
return this.idCardUrl;
}
/**
* @return legalNoticeUrl
*/
public String getLegalNoticeUrl() {
return this.legalNoticeUrl;
}
/**
* @return passportUrl
*/
public String getPassportUrl() {
return this.passportUrl;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return province
*/
public String getProvince() {
return this.province;
}
public static final class Builder {
private String address;
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private Integer auditStatus;
private String authorizationUrl;
private String businessLicenceUrl;
private String cardNumber;
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 idCardUrl;
private String legalNoticeUrl;
private String passportUrl;
private Integer principalName;
private String province;
/**
* Address.
*/
public Builder address(String address) {
this.address = address;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.applicantType = applicantType;
return this;
}
/**
* AuditStatus.
*/
public Builder auditStatus(Integer auditStatus) {
this.auditStatus = auditStatus;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BusinessLicenceUrl.
*/
public Builder businessLicenceUrl(String businessLicenceUrl) {
this.businessLicenceUrl = businessLicenceUrl;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
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;
}
/**
* IdCardUrl.
*/
public Builder idCardUrl(String idCardUrl) {
this.idCardUrl = idCardUrl;
return this;
}
/**
* LegalNoticeUrl.
*/
public Builder legalNoticeUrl(String legalNoticeUrl) {
this.legalNoticeUrl = legalNoticeUrl;
return this;
}
/**
* PassportUrl.
*/
public Builder passportUrl(String passportUrl) {
this.passportUrl = passportUrl;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.province = province;
return this;
}
public Applicant build() {
return new Applicant(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 Supplements extends TeaModel {
@NameInMap("AcceptExpirationDate")
private Long acceptExpirationDate;
@NameInMap("AcceptTime")
private Long acceptTime;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("Content")
private String content;
@NameInMap("OfficialFile")
private String officialFile;
@NameInMap("OperateTime")
private Long operateTime;
@NameInMap("OrderId")
private String orderId;
@NameInMap("SbjExpirationDate")
private Long sbjExpirationDate;
@NameInMap("SendTime")
private Long sendTime;
@NameInMap("SerialNumber")
private String serialNumber;
@NameInMap("SupplementId")
private Long supplementId;
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UserFiles")
private java.util.List < String > userFiles;
private Supplements(Builder builder) {
this.acceptExpirationDate = builder.acceptExpirationDate;
this.acceptTime = builder.acceptTime;
this.applicationType = builder.applicationType;
this.content = builder.content;
this.officialFile = builder.officialFile;
this.operateTime = builder.operateTime;
this.orderId = builder.orderId;
this.sbjExpirationDate = builder.sbjExpirationDate;
this.sendTime = builder.sendTime;
this.serialNumber = builder.serialNumber;
this.supplementId = builder.supplementId;
this.supplementStatus = builder.supplementStatus;
this.trademarkNumber = builder.trademarkNumber;
this.userFiles = builder.userFiles;
}
public static Builder builder() {
return new Builder();
}
public static Supplements create() {
return builder().build();
}
/**
* @return acceptExpirationDate
*/
public Long getAcceptExpirationDate() {
return this.acceptExpirationDate;
}
/**
* @return acceptTime
*/
public Long getAcceptTime() {
return this.acceptTime;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return officialFile
*/
public String getOfficialFile() {
return this.officialFile;
}
/**
* @return operateTime
*/
public Long getOperateTime() {
return this.operateTime;
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return sbjExpirationDate
*/
public Long getSbjExpirationDate() {
return this.sbjExpirationDate;
}
/**
* @return sendTime
*/
public Long getSendTime() {
return this.sendTime;
}
/**
* @return serialNumber
*/
public String getSerialNumber() {
return this.serialNumber;
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return userFiles
*/
public java.util.List < String > getUserFiles() {
return this.userFiles;
}
public static final class Builder {
private Long acceptExpirationDate;
private Long acceptTime;
private Integer applicationType;
private String content;
private String officialFile;
private Long operateTime;
private String orderId;
private Long sbjExpirationDate;
private Long sendTime;
private String serialNumber;
private Long supplementId;
private Integer supplementStatus;
private String trademarkNumber;
private java.util.List < String > userFiles;
/**
* AcceptExpirationDate.
*/
public Builder acceptExpirationDate(Long acceptExpirationDate) {
this.acceptExpirationDate = acceptExpirationDate;
return this;
}
/**
* AcceptTime.
*/
public Builder acceptTime(Long acceptTime) {
this.acceptTime = acceptTime;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* Content.
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* OfficialFile.
*/
public Builder officialFile(String officialFile) {
this.officialFile = officialFile;
return this;
}
/**
* OperateTime.
*/
public Builder operateTime(Long operateTime) {
this.operateTime = operateTime;
return this;
}
/**
* OrderId.
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* SbjExpirationDate.
*/
public Builder sbjExpirationDate(Long sbjExpirationDate) {
this.sbjExpirationDate = sbjExpirationDate;
return this;
}
/**
* SendTime.
*/
public Builder sendTime(Long sendTime) {
this.sendTime = sendTime;
return this;
}
/**
* SerialNumber.
*/
public Builder serialNumber(String serialNumber) {
this.serialNumber = serialNumber;
return this;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.supplementId = supplementId;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.supplementStatus = supplementStatus;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UserFiles.
*/
public Builder userFiles(java.util.List < String > userFiles) {
this.userFiles = userFiles;
return this;
}
public Supplements build() {
return new Supplements(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);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeApplicantRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeApplicantRequest} extends {@link RequestModel}
*
* <p>DescribeApplicantRequest</p>
*/
public class DescribeApplicantRequest extends Request {
@Query
@NameInMap("ApplicantId")
@Validation(required = true)
private Long applicantId;
private DescribeApplicantRequest(Builder builder) {
super(builder);
this.applicantId = builder.applicantId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeApplicantRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
public static final class Builder extends Request.Builder<DescribeApplicantRequest, Builder> {
private Long applicantId;
private Builder() {
super();
}
private Builder(DescribeApplicantRequest request) {
super(request);
this.applicantId = request.applicantId;
}
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.putQueryParameter("ApplicantId", applicantId);
this.applicantId = applicantId;
return this;
}
@Override
public DescribeApplicantRequest build() {
return new DescribeApplicantRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeApplicantResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeApplicantResponse} extends {@link TeaModel}
*
* <p>DescribeApplicantResponse</p>
*/
public class DescribeApplicantResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribeApplicantResponseBody body;
private DescribeApplicantResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeApplicantResponse 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 DescribeApplicantResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeApplicantResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeApplicantResponseBody body);
@Override
DescribeApplicantResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeApplicantResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribeApplicantResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeApplicantResponse 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(DescribeApplicantResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeApplicantResponse build() {
return new DescribeApplicantResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeApplicantResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeApplicantResponseBody} extends {@link TeaModel}
*
* <p>DescribeApplicantResponseBody</p>
*/
public class DescribeApplicantResponseBody extends TeaModel {
@NameInMap("Address")
private String address;
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@NameInMap("ApplicantType")
private Integer applicantType;
@NameInMap("ApplicantVersion")
private String applicantVersion;
@NameInMap("AuditStatus")
private Integer auditStatus;
@NameInMap("AuthorizationAuditStatus")
private Integer authorizationAuditStatus;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BusinessLicenceUrl")
private String businessLicenceUrl;
@NameInMap("CardNumber")
private String cardNumber;
@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("IdCardName")
private String idCardName;
@NameInMap("IdCardNumber")
private String idCardNumber;
@NameInMap("IdCardUrl")
private String idCardUrl;
@NameInMap("LegalNoticeUrl")
private String legalNoticeUrl;
@NameInMap("Note")
private String note;
@NameInMap("PassportUrl")
private String passportUrl;
@NameInMap("PersonalType")
private Long personalType;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("Province")
private String province;
@NameInMap("RequestId")
private String requestId;
@NameInMap("ValidDate")
private Long validDate;
private DescribeApplicantResponseBody(Builder builder) {
this.address = builder.address;
this.applicantId = builder.applicantId;
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.applicantVersion = builder.applicantVersion;
this.auditStatus = builder.auditStatus;
this.authorizationAuditStatus = builder.authorizationAuditStatus;
this.authorizationUrl = builder.authorizationUrl;
this.businessLicenceUrl = builder.businessLicenceUrl;
this.cardNumber = builder.cardNumber;
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.idCardUrl = builder.idCardUrl;
this.legalNoticeUrl = builder.legalNoticeUrl;
this.note = builder.note;
this.passportUrl = builder.passportUrl;
this.personalType = builder.personalType;
this.principalName = builder.principalName;
this.province = builder.province;
this.requestId = builder.requestId;
this.validDate = builder.validDate;
}
public static Builder builder() {
return new Builder();
}
public static DescribeApplicantResponseBody create() {
return builder().build();
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return applicantVersion
*/
public String getApplicantVersion() {
return this.applicantVersion;
}
/**
* @return auditStatus
*/
public Integer getAuditStatus() {
return this.auditStatus;
}
/**
* @return authorizationAuditStatus
*/
public Integer getAuthorizationAuditStatus() {
return this.authorizationAuditStatus;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return businessLicenceUrl
*/
public String getBusinessLicenceUrl() {
return this.businessLicenceUrl;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @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 idCardUrl
*/
public String getIdCardUrl() {
return this.idCardUrl;
}
/**
* @return legalNoticeUrl
*/
public String getLegalNoticeUrl() {
return this.legalNoticeUrl;
}
/**
* @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 principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return province
*/
public String getProvince() {
return this.province;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return validDate
*/
public Long getValidDate() {
return this.validDate;
}
public static final class Builder {
private String address;
private Long applicantId;
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private String applicantVersion;
private Integer auditStatus;
private Integer authorizationAuditStatus;
private String authorizationUrl;
private String businessLicenceUrl;
private String cardNumber;
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 idCardUrl;
private String legalNoticeUrl;
private String note;
private String passportUrl;
private Long personalType;
private Integer principalName;
private String province;
private String requestId;
private Long validDate;
/**
* Address.
*/
public Builder address(String address) {
this.address = address;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.applicantType = applicantType;
return this;
}
/**
* ApplicantVersion.
*/
public Builder applicantVersion(String applicantVersion) {
this.applicantVersion = applicantVersion;
return this;
}
/**
* AuditStatus.
*/
public Builder auditStatus(Integer auditStatus) {
this.auditStatus = auditStatus;
return this;
}
/**
* AuthorizationAuditStatus.
*/
public Builder authorizationAuditStatus(Integer authorizationAuditStatus) {
this.authorizationAuditStatus = authorizationAuditStatus;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BusinessLicenceUrl.
*/
public Builder businessLicenceUrl(String businessLicenceUrl) {
this.businessLicenceUrl = businessLicenceUrl;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
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;
}
/**
* IdCardName.
*/
public Builder idCardName(String idCardName) {
this.idCardName = idCardName;
return this;
}
/**
* IdCardNumber.
*/
public Builder idCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
return this;
}
/**
* IdCardUrl.
*/
public Builder idCardUrl(String idCardUrl) {
this.idCardUrl = idCardUrl;
return this;
}
/**
* LegalNoticeUrl.
*/
public Builder legalNoticeUrl(String legalNoticeUrl) {
this.legalNoticeUrl = legalNoticeUrl;
return this;
}
/**
* 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;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.province = province;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* ValidDate.
*/
public Builder validDate(Long validDate) {
this.validDate = validDate;
return this;
}
public DescribeApplicantResponseBody build() {
return new DescribeApplicantResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribePartnerTrademarkApplicationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribePartnerTrademarkApplicationRequest} extends {@link RequestModel}
*
* <p>DescribePartnerTrademarkApplicationRequest</p>
*/
public class DescribePartnerTrademarkApplicationRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private DescribePartnerTrademarkApplicationRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static DescribePartnerTrademarkApplicationRequest 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<DescribePartnerTrademarkApplicationRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(DescribePartnerTrademarkApplicationRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public DescribePartnerTrademarkApplicationRequest build() {
return new DescribePartnerTrademarkApplicationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribePartnerTrademarkApplicationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribePartnerTrademarkApplicationResponse} extends {@link TeaModel}
*
* <p>DescribePartnerTrademarkApplicationResponse</p>
*/
public class DescribePartnerTrademarkApplicationResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribePartnerTrademarkApplicationResponseBody body;
private DescribePartnerTrademarkApplicationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribePartnerTrademarkApplicationResponse 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 DescribePartnerTrademarkApplicationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribePartnerTrademarkApplicationResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribePartnerTrademarkApplicationResponseBody body);
@Override
DescribePartnerTrademarkApplicationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribePartnerTrademarkApplicationResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribePartnerTrademarkApplicationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribePartnerTrademarkApplicationResponse 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(DescribePartnerTrademarkApplicationResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribePartnerTrademarkApplicationResponse build() {
return new DescribePartnerTrademarkApplicationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribePartnerTrademarkApplicationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribePartnerTrademarkApplicationResponseBody} extends {@link TeaModel}
*
* <p>DescribePartnerTrademarkApplicationResponseBody</p>
*/
public class DescribePartnerTrademarkApplicationResponseBody extends TeaModel {
@NameInMap("AcceptUrl")
private String acceptUrl;
@NameInMap("Applicant")
private Applicant applicant;
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicationStatus")
private Integer applicationStatus;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BizId")
private String bizId;
@NameInMap("BlackAndWhiteIconUrl")
private String blackAndWhiteIconUrl;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("ExtendInfo")
private java.util.Map < String, ? > extendInfo;
@NameInMap("FirstClassification")
private FirstClassification firstClassification;
@NameInMap("JudgeResultUrls")
private java.util.List < String > judgeResultUrls;
@NameInMap("Note")
private String note;
@NameInMap("OrderId")
private String orderId;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("ReceiptUrls")
private java.util.List < String > receiptUrls;
@NameInMap("RecvUserLogistics")
private String recvUserLogistics;
@NameInMap("RequestId")
private String requestId;
@NameInMap("SendSbjLogistics")
private String sendSbjLogistics;
@NameInMap("SendUserLogistics")
private String sendUserLogistics;
@NameInMap("ServicePrice")
private Float servicePrice;
@NameInMap("Supplements")
private java.util.List < Supplements> supplements;
@NameInMap("ThirdClassifications")
private java.util.List < ThirdClassifications> thirdClassifications;
@NameInMap("TotalPrice")
private Float totalPrice;
@NameInMap("TrademarkIcon")
private String trademarkIcon;
@NameInMap("TrademarkName")
private String trademarkName;
@NameInMap("TrademarkNameType")
private Integer trademarkNameType;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UpdateTime")
private Long updateTime;
private DescribePartnerTrademarkApplicationResponseBody(Builder builder) {
this.acceptUrl = builder.acceptUrl;
this.applicant = builder.applicant;
this.applicantId = builder.applicantId;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.authorizationUrl = builder.authorizationUrl;
this.bizId = builder.bizId;
this.blackAndWhiteIconUrl = builder.blackAndWhiteIconUrl;
this.createTime = builder.createTime;
this.extendInfo = builder.extendInfo;
this.firstClassification = builder.firstClassification;
this.judgeResultUrls = builder.judgeResultUrls;
this.note = builder.note;
this.orderId = builder.orderId;
this.orderPrice = builder.orderPrice;
this.principalName = builder.principalName;
this.receiptUrls = builder.receiptUrls;
this.recvUserLogistics = builder.recvUserLogistics;
this.requestId = builder.requestId;
this.sendSbjLogistics = builder.sendSbjLogistics;
this.sendUserLogistics = builder.sendUserLogistics;
this.servicePrice = builder.servicePrice;
this.supplements = builder.supplements;
this.thirdClassifications = builder.thirdClassifications;
this.totalPrice = builder.totalPrice;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNameType = builder.trademarkNameType;
this.trademarkNumber = builder.trademarkNumber;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static DescribePartnerTrademarkApplicationResponseBody create() {
return builder().build();
}
/**
* @return acceptUrl
*/
public String getAcceptUrl() {
return this.acceptUrl;
}
/**
* @return applicant
*/
public Applicant getApplicant() {
return this.applicant;
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return blackAndWhiteIconUrl
*/
public String getBlackAndWhiteIconUrl() {
return this.blackAndWhiteIconUrl;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return extendInfo
*/
public java.util.Map < String, ? > getExtendInfo() {
return this.extendInfo;
}
/**
* @return firstClassification
*/
public FirstClassification getFirstClassification() {
return this.firstClassification;
}
/**
* @return judgeResultUrls
*/
public java.util.List < String > getJudgeResultUrls() {
return this.judgeResultUrls;
}
/**
* @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 receiptUrls
*/
public java.util.List < String > getReceiptUrls() {
return this.receiptUrls;
}
/**
* @return recvUserLogistics
*/
public String getRecvUserLogistics() {
return this.recvUserLogistics;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return sendSbjLogistics
*/
public String getSendSbjLogistics() {
return this.sendSbjLogistics;
}
/**
* @return sendUserLogistics
*/
public String getSendUserLogistics() {
return this.sendUserLogistics;
}
/**
* @return servicePrice
*/
public Float getServicePrice() {
return this.servicePrice;
}
/**
* @return supplements
*/
public java.util.List < Supplements> getSupplements() {
return this.supplements;
}
/**
* @return thirdClassifications
*/
public java.util.List < ThirdClassifications> getThirdClassifications() {
return this.thirdClassifications;
}
/**
* @return totalPrice
*/
public Float getTotalPrice() {
return this.totalPrice;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNameType
*/
public Integer getTrademarkNameType() {
return this.trademarkNameType;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String acceptUrl;
private Applicant applicant;
private Long applicantId;
private Integer applicationStatus;
private Integer applicationType;
private String authorizationUrl;
private String bizId;
private String blackAndWhiteIconUrl;
private Long createTime;
private java.util.Map < String, ? > extendInfo;
private FirstClassification firstClassification;
private java.util.List < String > judgeResultUrls;
private String note;
private String orderId;
private Float orderPrice;
private Integer principalName;
private java.util.List < String > receiptUrls;
private String recvUserLogistics;
private String requestId;
private String sendSbjLogistics;
private String sendUserLogistics;
private Float servicePrice;
private java.util.List < Supplements> supplements;
private java.util.List < ThirdClassifications> thirdClassifications;
private Float totalPrice;
private String trademarkIcon;
private String trademarkName;
private Integer trademarkNameType;
private String trademarkNumber;
private Long updateTime;
/**
* AcceptUrl.
*/
public Builder acceptUrl(String acceptUrl) {
this.acceptUrl = acceptUrl;
return this;
}
/**
* Applicant.
*/
public Builder applicant(Applicant applicant) {
this.applicant = applicant;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* BlackAndWhiteIconUrl.
*/
public Builder blackAndWhiteIconUrl(String blackAndWhiteIconUrl) {
this.blackAndWhiteIconUrl = blackAndWhiteIconUrl;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* ExtendInfo.
*/
public Builder extendInfo(java.util.Map < String, ? > extendInfo) {
this.extendInfo = extendInfo;
return this;
}
/**
* FirstClassification.
*/
public Builder firstClassification(FirstClassification firstClassification) {
this.firstClassification = firstClassification;
return this;
}
/**
* JudgeResultUrls.
*/
public Builder judgeResultUrls(java.util.List < String > judgeResultUrls) {
this.judgeResultUrls = judgeResultUrls;
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;
}
/**
* ReceiptUrls.
*/
public Builder receiptUrls(java.util.List < String > receiptUrls) {
this.receiptUrls = receiptUrls;
return this;
}
/**
* RecvUserLogistics.
*/
public Builder recvUserLogistics(String recvUserLogistics) {
this.recvUserLogistics = recvUserLogistics;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SendSbjLogistics.
*/
public Builder sendSbjLogistics(String sendSbjLogistics) {
this.sendSbjLogistics = sendSbjLogistics;
return this;
}
/**
* SendUserLogistics.
*/
public Builder sendUserLogistics(String sendUserLogistics) {
this.sendUserLogistics = sendUserLogistics;
return this;
}
/**
* ServicePrice.
*/
public Builder servicePrice(Float servicePrice) {
this.servicePrice = servicePrice;
return this;
}
/**
* Supplements.
*/
public Builder supplements(java.util.List < Supplements> supplements) {
this.supplements = supplements;
return this;
}
/**
* ThirdClassifications.
*/
public Builder thirdClassifications(java.util.List < ThirdClassifications> thirdClassifications) {
this.thirdClassifications = thirdClassifications;
return this;
}
/**
* TotalPrice.
*/
public Builder totalPrice(Float totalPrice) {
this.totalPrice = totalPrice;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNameType.
*/
public Builder trademarkNameType(Integer trademarkNameType) {
this.trademarkNameType = trademarkNameType;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
public DescribePartnerTrademarkApplicationResponseBody build() {
return new DescribePartnerTrademarkApplicationResponseBody(this);
}
}
public static class Applicant extends TeaModel {
@NameInMap("Address")
private String address;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@NameInMap("ApplicantType")
private Integer applicantType;
@NameInMap("AuditStatus")
private Integer auditStatus;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BusinessLicenceUrl")
private String businessLicenceUrl;
@NameInMap("CardNumber")
private String cardNumber;
@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("IdCardUrl")
private String idCardUrl;
@NameInMap("LegalNoticeUrl")
private String legalNoticeUrl;
@NameInMap("PassportUrl")
private String passportUrl;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("Province")
private String province;
private Applicant(Builder builder) {
this.address = builder.address;
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.auditStatus = builder.auditStatus;
this.authorizationUrl = builder.authorizationUrl;
this.businessLicenceUrl = builder.businessLicenceUrl;
this.cardNumber = builder.cardNumber;
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.idCardUrl = builder.idCardUrl;
this.legalNoticeUrl = builder.legalNoticeUrl;
this.passportUrl = builder.passportUrl;
this.principalName = builder.principalName;
this.province = builder.province;
}
public static Builder builder() {
return new Builder();
}
public static Applicant create() {
return builder().build();
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return auditStatus
*/
public Integer getAuditStatus() {
return this.auditStatus;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return businessLicenceUrl
*/
public String getBusinessLicenceUrl() {
return this.businessLicenceUrl;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @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 idCardUrl
*/
public String getIdCardUrl() {
return this.idCardUrl;
}
/**
* @return legalNoticeUrl
*/
public String getLegalNoticeUrl() {
return this.legalNoticeUrl;
}
/**
* @return passportUrl
*/
public String getPassportUrl() {
return this.passportUrl;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return province
*/
public String getProvince() {
return this.province;
}
public static final class Builder {
private String address;
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private Integer auditStatus;
private String authorizationUrl;
private String businessLicenceUrl;
private String cardNumber;
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 idCardUrl;
private String legalNoticeUrl;
private String passportUrl;
private Integer principalName;
private String province;
/**
* Address.
*/
public Builder address(String address) {
this.address = address;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.applicantType = applicantType;
return this;
}
/**
* AuditStatus.
*/
public Builder auditStatus(Integer auditStatus) {
this.auditStatus = auditStatus;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BusinessLicenceUrl.
*/
public Builder businessLicenceUrl(String businessLicenceUrl) {
this.businessLicenceUrl = businessLicenceUrl;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
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;
}
/**
* IdCardUrl.
*/
public Builder idCardUrl(String idCardUrl) {
this.idCardUrl = idCardUrl;
return this;
}
/**
* LegalNoticeUrl.
*/
public Builder legalNoticeUrl(String legalNoticeUrl) {
this.legalNoticeUrl = legalNoticeUrl;
return this;
}
/**
* PassportUrl.
*/
public Builder passportUrl(String passportUrl) {
this.passportUrl = passportUrl;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.province = province;
return this;
}
public Applicant build() {
return new Applicant(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 Supplements extends TeaModel {
@NameInMap("AcceptExpirationDate")
private Long acceptExpirationDate;
@NameInMap("AcceptTime")
private Long acceptTime;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("Content")
private String content;
@NameInMap("OfficialFile")
private String officialFile;
@NameInMap("OperateTime")
private Long operateTime;
@NameInMap("OrderId")
private String orderId;
@NameInMap("SbjExpirationDate")
private Long sbjExpirationDate;
@NameInMap("SendTime")
private Long sendTime;
@NameInMap("SerialNumber")
private String serialNumber;
@NameInMap("SupplementId")
private Long supplementId;
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UserFiles")
private java.util.List < String > userFiles;
private Supplements(Builder builder) {
this.acceptExpirationDate = builder.acceptExpirationDate;
this.acceptTime = builder.acceptTime;
this.applicationType = builder.applicationType;
this.content = builder.content;
this.officialFile = builder.officialFile;
this.operateTime = builder.operateTime;
this.orderId = builder.orderId;
this.sbjExpirationDate = builder.sbjExpirationDate;
this.sendTime = builder.sendTime;
this.serialNumber = builder.serialNumber;
this.supplementId = builder.supplementId;
this.supplementStatus = builder.supplementStatus;
this.trademarkNumber = builder.trademarkNumber;
this.userFiles = builder.userFiles;
}
public static Builder builder() {
return new Builder();
}
public static Supplements create() {
return builder().build();
}
/**
* @return acceptExpirationDate
*/
public Long getAcceptExpirationDate() {
return this.acceptExpirationDate;
}
/**
* @return acceptTime
*/
public Long getAcceptTime() {
return this.acceptTime;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return officialFile
*/
public String getOfficialFile() {
return this.officialFile;
}
/**
* @return operateTime
*/
public Long getOperateTime() {
return this.operateTime;
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return sbjExpirationDate
*/
public Long getSbjExpirationDate() {
return this.sbjExpirationDate;
}
/**
* @return sendTime
*/
public Long getSendTime() {
return this.sendTime;
}
/**
* @return serialNumber
*/
public String getSerialNumber() {
return this.serialNumber;
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return userFiles
*/
public java.util.List < String > getUserFiles() {
return this.userFiles;
}
public static final class Builder {
private Long acceptExpirationDate;
private Long acceptTime;
private Integer applicationType;
private String content;
private String officialFile;
private Long operateTime;
private String orderId;
private Long sbjExpirationDate;
private Long sendTime;
private String serialNumber;
private Long supplementId;
private Integer supplementStatus;
private String trademarkNumber;
private java.util.List < String > userFiles;
/**
* AcceptExpirationDate.
*/
public Builder acceptExpirationDate(Long acceptExpirationDate) {
this.acceptExpirationDate = acceptExpirationDate;
return this;
}
/**
* AcceptTime.
*/
public Builder acceptTime(Long acceptTime) {
this.acceptTime = acceptTime;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* Content.
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* OfficialFile.
*/
public Builder officialFile(String officialFile) {
this.officialFile = officialFile;
return this;
}
/**
* OperateTime.
*/
public Builder operateTime(Long operateTime) {
this.operateTime = operateTime;
return this;
}
/**
* OrderId.
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* SbjExpirationDate.
*/
public Builder sbjExpirationDate(Long sbjExpirationDate) {
this.sbjExpirationDate = sbjExpirationDate;
return this;
}
/**
* SendTime.
*/
public Builder sendTime(Long sendTime) {
this.sendTime = sendTime;
return this;
}
/**
* SerialNumber.
*/
public Builder serialNumber(String serialNumber) {
this.serialNumber = serialNumber;
return this;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.supplementId = supplementId;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.supplementStatus = supplementStatus;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UserFiles.
*/
public Builder userFiles(java.util.List < String > userFiles) {
this.userFiles = userFiles;
return this;
}
public Supplements build() {
return new Supplements(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);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeQualificationStatusRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeQualificationStatusRequest} extends {@link RequestModel}
*
* <p>DescribeQualificationStatusRequest</p>
*/
public class DescribeQualificationStatusRequest extends Request {
@Query
@NameInMap("TbUid")
@Validation(required = true)
private String tbUid;
private DescribeQualificationStatusRequest(Builder builder) {
super(builder);
this.tbUid = builder.tbUid;
}
public static Builder builder() {
return new Builder();
}
public static DescribeQualificationStatusRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return tbUid
*/
public String getTbUid() {
return this.tbUid;
}
public static final class Builder extends Request.Builder<DescribeQualificationStatusRequest, Builder> {
private String tbUid;
private Builder() {
super();
}
private Builder(DescribeQualificationStatusRequest request) {
super(request);
this.tbUid = request.tbUid;
}
/**
* TbUid.
*/
public Builder tbUid(String tbUid) {
this.putQueryParameter("TbUid", tbUid);
this.tbUid = tbUid;
return this;
}
@Override
public DescribeQualificationStatusRequest build() {
return new DescribeQualificationStatusRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeQualificationStatusResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeQualificationStatusResponse} extends {@link TeaModel}
*
* <p>DescribeQualificationStatusResponse</p>
*/
public class DescribeQualificationStatusResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribeQualificationStatusResponseBody body;
private DescribeQualificationStatusResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeQualificationStatusResponse 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 DescribeQualificationStatusResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeQualificationStatusResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeQualificationStatusResponseBody body);
@Override
DescribeQualificationStatusResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeQualificationStatusResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribeQualificationStatusResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeQualificationStatusResponse 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(DescribeQualificationStatusResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeQualificationStatusResponse build() {
return new DescribeQualificationStatusResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeQualificationStatusResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeQualificationStatusResponseBody} extends {@link TeaModel}
*
* <p>DescribeQualificationStatusResponseBody</p>
*/
public class DescribeQualificationStatusResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Status")
private String status;
@NameInMap("Success")
private Boolean success;
private DescribeQualificationStatusResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
this.status = builder.status;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DescribeQualificationStatusResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
private String status;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DescribeQualificationStatusResponseBody build() {
return new DescribeQualificationStatusResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeSupplementRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeSupplementRequest} extends {@link RequestModel}
*
* <p>DescribeSupplementRequest</p>
*/
public class DescribeSupplementRequest extends Request {
@Query
@NameInMap("SupplementId")
@Validation(required = true)
private Long supplementId;
private DescribeSupplementRequest(Builder builder) {
super(builder);
this.supplementId = builder.supplementId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeSupplementRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
public static final class Builder extends Request.Builder<DescribeSupplementRequest, Builder> {
private Long supplementId;
private Builder() {
super();
}
private Builder(DescribeSupplementRequest request) {
super(request);
this.supplementId = request.supplementId;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.putQueryParameter("SupplementId", supplementId);
this.supplementId = supplementId;
return this;
}
@Override
public DescribeSupplementRequest build() {
return new DescribeSupplementRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeSupplementResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeSupplementResponse} extends {@link TeaModel}
*
* <p>DescribeSupplementResponse</p>
*/
public class DescribeSupplementResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribeSupplementResponseBody body;
private DescribeSupplementResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeSupplementResponse 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 DescribeSupplementResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeSupplementResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeSupplementResponseBody body);
@Override
DescribeSupplementResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeSupplementResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribeSupplementResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeSupplementResponse 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(DescribeSupplementResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeSupplementResponse build() {
return new DescribeSupplementResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeSupplementResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeSupplementResponseBody} extends {@link TeaModel}
*
* <p>DescribeSupplementResponseBody</p>
*/
public class DescribeSupplementResponseBody extends TeaModel {
@NameInMap("AcceptExpirationDate")
private Long acceptExpirationDate;
@NameInMap("AcceptTime")
private Long acceptTime;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("Content")
private String content;
@NameInMap("OfficialFile")
private String officialFile;
@NameInMap("OperateTime")
private Long operateTime;
@NameInMap("RequestId")
private String requestId;
@NameInMap("SbjExpirationDate")
private Long sbjExpirationDate;
@NameInMap("SendTime")
private Long sendTime;
@NameInMap("SerialNumber")
private String serialNumber;
@NameInMap("SupplementId")
private Long supplementId;
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UserFiles")
private UserFiles userFiles;
private DescribeSupplementResponseBody(Builder builder) {
this.acceptExpirationDate = builder.acceptExpirationDate;
this.acceptTime = builder.acceptTime;
this.applicationType = builder.applicationType;
this.content = builder.content;
this.officialFile = builder.officialFile;
this.operateTime = builder.operateTime;
this.requestId = builder.requestId;
this.sbjExpirationDate = builder.sbjExpirationDate;
this.sendTime = builder.sendTime;
this.serialNumber = builder.serialNumber;
this.supplementId = builder.supplementId;
this.supplementStatus = builder.supplementStatus;
this.trademarkNumber = builder.trademarkNumber;
this.userFiles = builder.userFiles;
}
public static Builder builder() {
return new Builder();
}
public static DescribeSupplementResponseBody create() {
return builder().build();
}
/**
* @return acceptExpirationDate
*/
public Long getAcceptExpirationDate() {
return this.acceptExpirationDate;
}
/**
* @return acceptTime
*/
public Long getAcceptTime() {
return this.acceptTime;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return officialFile
*/
public String getOfficialFile() {
return this.officialFile;
}
/**
* @return operateTime
*/
public Long getOperateTime() {
return this.operateTime;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return sbjExpirationDate
*/
public Long getSbjExpirationDate() {
return this.sbjExpirationDate;
}
/**
* @return sendTime
*/
public Long getSendTime() {
return this.sendTime;
}
/**
* @return serialNumber
*/
public String getSerialNumber() {
return this.serialNumber;
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return userFiles
*/
public UserFiles getUserFiles() {
return this.userFiles;
}
public static final class Builder {
private Long acceptExpirationDate;
private Long acceptTime;
private Integer applicationType;
private String content;
private String officialFile;
private Long operateTime;
private String requestId;
private Long sbjExpirationDate;
private Long sendTime;
private String serialNumber;
private Long supplementId;
private Integer supplementStatus;
private String trademarkNumber;
private UserFiles userFiles;
/**
* AcceptExpirationDate.
*/
public Builder acceptExpirationDate(Long acceptExpirationDate) {
this.acceptExpirationDate = acceptExpirationDate;
return this;
}
/**
* AcceptTime.
*/
public Builder acceptTime(Long acceptTime) {
this.acceptTime = acceptTime;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* Content.
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* OfficialFile.
*/
public Builder officialFile(String officialFile) {
this.officialFile = officialFile;
return this;
}
/**
* OperateTime.
*/
public Builder operateTime(Long operateTime) {
this.operateTime = operateTime;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SbjExpirationDate.
*/
public Builder sbjExpirationDate(Long sbjExpirationDate) {
this.sbjExpirationDate = sbjExpirationDate;
return this;
}
/**
* SendTime.
*/
public Builder sendTime(Long sendTime) {
this.sendTime = sendTime;
return this;
}
/**
* SerialNumber.
*/
public Builder serialNumber(String serialNumber) {
this.serialNumber = serialNumber;
return this;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.supplementId = supplementId;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.supplementStatus = supplementStatus;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UserFiles.
*/
public Builder userFiles(UserFiles userFiles) {
this.userFiles = userFiles;
return this;
}
public DescribeSupplementResponseBody build() {
return new DescribeSupplementResponseBody(this);
}
}
public static class UserFiles extends TeaModel {
@NameInMap("UserFile")
private java.util.List < String > userFile;
private UserFiles(Builder builder) {
this.userFile = builder.userFile;
}
public static Builder builder() {
return new Builder();
}
public static UserFiles create() {
return builder().build();
}
/**
* @return userFile
*/
public java.util.List < String > getUserFile() {
return this.userFile;
}
public static final class Builder {
private java.util.List < String > userFile;
/**
* UserFile.
*/
public Builder userFile(java.util.List < String > userFile) {
this.userFile = userFile;
return this;
}
public UserFiles build() {
return new UserFiles(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeTrademarkApplicationRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeTrademarkApplicationRequest} extends {@link RequestModel}
*
* <p>DescribeTrademarkApplicationRequest</p>
*/
public class DescribeTrademarkApplicationRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private DescribeTrademarkApplicationRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeTrademarkApplicationRequest 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<DescribeTrademarkApplicationRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(DescribeTrademarkApplicationRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public DescribeTrademarkApplicationRequest build() {
return new DescribeTrademarkApplicationRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeTrademarkApplicationResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeTrademarkApplicationResponse} extends {@link TeaModel}
*
* <p>DescribeTrademarkApplicationResponse</p>
*/
public class DescribeTrademarkApplicationResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribeTrademarkApplicationResponseBody body;
private DescribeTrademarkApplicationResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeTrademarkApplicationResponse 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 DescribeTrademarkApplicationResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeTrademarkApplicationResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeTrademarkApplicationResponseBody body);
@Override
DescribeTrademarkApplicationResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeTrademarkApplicationResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribeTrademarkApplicationResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeTrademarkApplicationResponse 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(DescribeTrademarkApplicationResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeTrademarkApplicationResponse build() {
return new DescribeTrademarkApplicationResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeTrademarkApplicationResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeTrademarkApplicationResponseBody} extends {@link TeaModel}
*
* <p>DescribeTrademarkApplicationResponseBody</p>
*/
public class DescribeTrademarkApplicationResponseBody extends TeaModel {
@NameInMap("AcceptUrl")
private String acceptUrl;
@NameInMap("AgreementId")
private String agreementId;
@NameInMap("Applicant")
private Applicant applicant;
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicationStatus")
private Integer applicationStatus;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BizId")
private String bizId;
@NameInMap("BlackAndWhiteIconUrl")
private String blackAndWhiteIconUrl;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("ExtendInfo")
private java.util.Map < String, ? > extendInfo;
@NameInMap("FirstClassification")
private FirstClassification firstClassification;
@NameInMap("Flags")
private Flags flags;
@NameInMap("JudgeResultUrls")
private JudgeResultUrls judgeResultUrls;
@NameInMap("Note")
private String note;
@NameInMap("OrderId")
private String orderId;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("ReceiptUrls")
private ReceiptUrls receiptUrls;
@NameInMap("RecvUserLogistics")
private String recvUserLogistics;
@NameInMap("RequestId")
private String requestId;
@NameInMap("SendSbjLogistics")
private String sendSbjLogistics;
@NameInMap("SendUserLogistics")
private String sendUserLogistics;
@NameInMap("ServicePrice")
private Float servicePrice;
@NameInMap("Supplements")
private Supplements supplements;
@NameInMap("ThirdClassifications")
private ThirdClassifications thirdClassifications;
@NameInMap("TotalPrice")
private Float totalPrice;
@NameInMap("TrademarkIcon")
private String trademarkIcon;
@NameInMap("TrademarkName")
private String trademarkName;
@NameInMap("TrademarkNameType")
private Integer trademarkNameType;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UpdateTime")
private Long updateTime;
private DescribeTrademarkApplicationResponseBody(Builder builder) {
this.acceptUrl = builder.acceptUrl;
this.agreementId = builder.agreementId;
this.applicant = builder.applicant;
this.applicantId = builder.applicantId;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.authorizationUrl = builder.authorizationUrl;
this.bizId = builder.bizId;
this.blackAndWhiteIconUrl = builder.blackAndWhiteIconUrl;
this.createTime = builder.createTime;
this.extendInfo = builder.extendInfo;
this.firstClassification = builder.firstClassification;
this.flags = builder.flags;
this.judgeResultUrls = builder.judgeResultUrls;
this.note = builder.note;
this.orderId = builder.orderId;
this.orderPrice = builder.orderPrice;
this.principalName = builder.principalName;
this.receiptUrls = builder.receiptUrls;
this.recvUserLogistics = builder.recvUserLogistics;
this.requestId = builder.requestId;
this.sendSbjLogistics = builder.sendSbjLogistics;
this.sendUserLogistics = builder.sendUserLogistics;
this.servicePrice = builder.servicePrice;
this.supplements = builder.supplements;
this.thirdClassifications = builder.thirdClassifications;
this.totalPrice = builder.totalPrice;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNameType = builder.trademarkNameType;
this.trademarkNumber = builder.trademarkNumber;
this.updateTime = builder.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static DescribeTrademarkApplicationResponseBody create() {
return builder().build();
}
/**
* @return acceptUrl
*/
public String getAcceptUrl() {
return this.acceptUrl;
}
/**
* @return agreementId
*/
public String getAgreementId() {
return this.agreementId;
}
/**
* @return applicant
*/
public Applicant getApplicant() {
return this.applicant;
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return blackAndWhiteIconUrl
*/
public String getBlackAndWhiteIconUrl() {
return this.blackAndWhiteIconUrl;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return extendInfo
*/
public java.util.Map < String, ? > getExtendInfo() {
return this.extendInfo;
}
/**
* @return firstClassification
*/
public FirstClassification getFirstClassification() {
return this.firstClassification;
}
/**
* @return flags
*/
public Flags getFlags() {
return this.flags;
}
/**
* @return judgeResultUrls
*/
public JudgeResultUrls getJudgeResultUrls() {
return this.judgeResultUrls;
}
/**
* @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 receiptUrls
*/
public ReceiptUrls getReceiptUrls() {
return this.receiptUrls;
}
/**
* @return recvUserLogistics
*/
public String getRecvUserLogistics() {
return this.recvUserLogistics;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return sendSbjLogistics
*/
public String getSendSbjLogistics() {
return this.sendSbjLogistics;
}
/**
* @return sendUserLogistics
*/
public String getSendUserLogistics() {
return this.sendUserLogistics;
}
/**
* @return servicePrice
*/
public Float getServicePrice() {
return this.servicePrice;
}
/**
* @return supplements
*/
public Supplements getSupplements() {
return this.supplements;
}
/**
* @return thirdClassifications
*/
public ThirdClassifications getThirdClassifications() {
return this.thirdClassifications;
}
/**
* @return totalPrice
*/
public Float getTotalPrice() {
return this.totalPrice;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNameType
*/
public Integer getTrademarkNameType() {
return this.trademarkNameType;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
public static final class Builder {
private String acceptUrl;
private String agreementId;
private Applicant applicant;
private Long applicantId;
private Integer applicationStatus;
private Integer applicationType;
private String authorizationUrl;
private String bizId;
private String blackAndWhiteIconUrl;
private Long createTime;
private java.util.Map < String, ? > extendInfo;
private FirstClassification firstClassification;
private Flags flags;
private JudgeResultUrls judgeResultUrls;
private String note;
private String orderId;
private Float orderPrice;
private Integer principalName;
private ReceiptUrls receiptUrls;
private String recvUserLogistics;
private String requestId;
private String sendSbjLogistics;
private String sendUserLogistics;
private Float servicePrice;
private Supplements supplements;
private ThirdClassifications thirdClassifications;
private Float totalPrice;
private String trademarkIcon;
private String trademarkName;
private Integer trademarkNameType;
private String trademarkNumber;
private Long updateTime;
/**
* AcceptUrl.
*/
public Builder acceptUrl(String acceptUrl) {
this.acceptUrl = acceptUrl;
return this;
}
/**
* AgreementId.
*/
public Builder agreementId(String agreementId) {
this.agreementId = agreementId;
return this;
}
/**
* Applicant.
*/
public Builder applicant(Applicant applicant) {
this.applicant = applicant;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* BlackAndWhiteIconUrl.
*/
public Builder blackAndWhiteIconUrl(String blackAndWhiteIconUrl) {
this.blackAndWhiteIconUrl = blackAndWhiteIconUrl;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* ExtendInfo.
*/
public Builder extendInfo(java.util.Map < String, ? > extendInfo) {
this.extendInfo = extendInfo;
return this;
}
/**
* FirstClassification.
*/
public Builder firstClassification(FirstClassification firstClassification) {
this.firstClassification = firstClassification;
return this;
}
/**
* Flags.
*/
public Builder flags(Flags flags) {
this.flags = flags;
return this;
}
/**
* JudgeResultUrls.
*/
public Builder judgeResultUrls(JudgeResultUrls judgeResultUrls) {
this.judgeResultUrls = judgeResultUrls;
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;
}
/**
* ReceiptUrls.
*/
public Builder receiptUrls(ReceiptUrls receiptUrls) {
this.receiptUrls = receiptUrls;
return this;
}
/**
* RecvUserLogistics.
*/
public Builder recvUserLogistics(String recvUserLogistics) {
this.recvUserLogistics = recvUserLogistics;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SendSbjLogistics.
*/
public Builder sendSbjLogistics(String sendSbjLogistics) {
this.sendSbjLogistics = sendSbjLogistics;
return this;
}
/**
* SendUserLogistics.
*/
public Builder sendUserLogistics(String sendUserLogistics) {
this.sendUserLogistics = sendUserLogistics;
return this;
}
/**
* ServicePrice.
*/
public Builder servicePrice(Float servicePrice) {
this.servicePrice = servicePrice;
return this;
}
/**
* Supplements.
*/
public Builder supplements(Supplements supplements) {
this.supplements = supplements;
return this;
}
/**
* ThirdClassifications.
*/
public Builder thirdClassifications(ThirdClassifications thirdClassifications) {
this.thirdClassifications = thirdClassifications;
return this;
}
/**
* TotalPrice.
*/
public Builder totalPrice(Float totalPrice) {
this.totalPrice = totalPrice;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNameType.
*/
public Builder trademarkNameType(Integer trademarkNameType) {
this.trademarkNameType = trademarkNameType;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
public DescribeTrademarkApplicationResponseBody build() {
return new DescribeTrademarkApplicationResponseBody(this);
}
}
public static class Applicant extends TeaModel {
@NameInMap("Address")
private String address;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@NameInMap("ApplicantType")
private Integer applicantType;
@NameInMap("AuditStatus")
private Integer auditStatus;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BusinessLicenceUrl")
private String businessLicenceUrl;
@NameInMap("CardNumber")
private String cardNumber;
@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("IdCardName")
private String idCardName;
@NameInMap("IdCardNumber")
private String idCardNumber;
@NameInMap("IdCardUrl")
private String idCardUrl;
@NameInMap("LegalNoticeUrl")
private String legalNoticeUrl;
@NameInMap("PassportUrl")
private String passportUrl;
@NameInMap("PersonalType")
private Long personalType;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("Province")
private String province;
private Applicant(Builder builder) {
this.address = builder.address;
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.auditStatus = builder.auditStatus;
this.authorizationUrl = builder.authorizationUrl;
this.businessLicenceUrl = builder.businessLicenceUrl;
this.cardNumber = builder.cardNumber;
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.idCardName = builder.idCardName;
this.idCardNumber = builder.idCardNumber;
this.idCardUrl = builder.idCardUrl;
this.legalNoticeUrl = builder.legalNoticeUrl;
this.passportUrl = builder.passportUrl;
this.personalType = builder.personalType;
this.principalName = builder.principalName;
this.province = builder.province;
}
public static Builder builder() {
return new Builder();
}
public static Applicant create() {
return builder().build();
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return auditStatus
*/
public Integer getAuditStatus() {
return this.auditStatus;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return businessLicenceUrl
*/
public String getBusinessLicenceUrl() {
return this.businessLicenceUrl;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @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 idCardName
*/
public String getIdCardName() {
return this.idCardName;
}
/**
* @return idCardNumber
*/
public String getIdCardNumber() {
return this.idCardNumber;
}
/**
* @return idCardUrl
*/
public String getIdCardUrl() {
return this.idCardUrl;
}
/**
* @return legalNoticeUrl
*/
public String getLegalNoticeUrl() {
return this.legalNoticeUrl;
}
/**
* @return passportUrl
*/
public String getPassportUrl() {
return this.passportUrl;
}
/**
* @return personalType
*/
public Long getPersonalType() {
return this.personalType;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return province
*/
public String getProvince() {
return this.province;
}
public static final class Builder {
private String address;
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private Integer auditStatus;
private String authorizationUrl;
private String businessLicenceUrl;
private String cardNumber;
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 idCardName;
private String idCardNumber;
private String idCardUrl;
private String legalNoticeUrl;
private String passportUrl;
private Long personalType;
private Integer principalName;
private String province;
/**
* Address.
*/
public Builder address(String address) {
this.address = address;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.applicantType = applicantType;
return this;
}
/**
* AuditStatus.
*/
public Builder auditStatus(Integer auditStatus) {
this.auditStatus = auditStatus;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BusinessLicenceUrl.
*/
public Builder businessLicenceUrl(String businessLicenceUrl) {
this.businessLicenceUrl = businessLicenceUrl;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
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;
}
/**
* IdCardName.
*/
public Builder idCardName(String idCardName) {
this.idCardName = idCardName;
return this;
}
/**
* IdCardNumber.
*/
public Builder idCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
return this;
}
/**
* IdCardUrl.
*/
public Builder idCardUrl(String idCardUrl) {
this.idCardUrl = idCardUrl;
return this;
}
/**
* LegalNoticeUrl.
*/
public Builder legalNoticeUrl(String legalNoticeUrl) {
this.legalNoticeUrl = legalNoticeUrl;
return this;
}
/**
* PassportUrl.
*/
public Builder passportUrl(String passportUrl) {
this.passportUrl = passportUrl;
return this;
}
/**
* PersonalType.
*/
public Builder personalType(Long personalType) {
this.personalType = personalType;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* Province.
*/
public Builder province(String province) {
this.province = province;
return this;
}
public Applicant build() {
return new Applicant(this);
}
}
}
public static class FirstClassification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
private FirstClassification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
}
public static Builder builder() {
return new Builder();
}
public static FirstClassification create() {
return builder().build();
}
/**
* @return classificationCode
*/
public String getClassificationCode() {
return this.classificationCode;
}
/**
* @return classificationName
*/
public String getClassificationName() {
return this.classificationName;
}
public static final class Builder {
private String classificationCode;
private String classificationName;
/**
* ClassificationCode.
*/
public Builder classificationCode(String classificationCode) {
this.classificationCode = classificationCode;
return this;
}
/**
* ClassificationName.
*/
public Builder classificationName(String classificationName) {
this.classificationName = classificationName;
return this;
}
public FirstClassification build() {
return new FirstClassification(this);
}
}
}
public static class Flags extends TeaModel {
@NameInMap("Flag")
private java.util.List < Integer > flag;
private Flags(Builder builder) {
this.flag = builder.flag;
}
public static Builder builder() {
return new Builder();
}
public static Flags create() {
return builder().build();
}
/**
* @return flag
*/
public java.util.List < Integer > getFlag() {
return this.flag;
}
public static final class Builder {
private java.util.List < Integer > flag;
/**
* Flag.
*/
public Builder flag(java.util.List < Integer > flag) {
this.flag = flag;
return this;
}
public Flags build() {
return new Flags(this);
}
}
}
public static class JudgeResultUrls extends TeaModel {
@NameInMap("JudgeResultUrl")
private java.util.List < String > judgeResultUrl;
private JudgeResultUrls(Builder builder) {
this.judgeResultUrl = builder.judgeResultUrl;
}
public static Builder builder() {
return new Builder();
}
public static JudgeResultUrls create() {
return builder().build();
}
/**
* @return judgeResultUrl
*/
public java.util.List < String > getJudgeResultUrl() {
return this.judgeResultUrl;
}
public static final class Builder {
private java.util.List < String > judgeResultUrl;
/**
* JudgeResultUrl.
*/
public Builder judgeResultUrl(java.util.List < String > judgeResultUrl) {
this.judgeResultUrl = judgeResultUrl;
return this;
}
public JudgeResultUrls build() {
return new JudgeResultUrls(this);
}
}
}
public static class ReceiptUrls extends TeaModel {
@NameInMap("ReceiptUrl")
private java.util.List < String > receiptUrl;
private ReceiptUrls(Builder builder) {
this.receiptUrl = builder.receiptUrl;
}
public static Builder builder() {
return new Builder();
}
public static ReceiptUrls create() {
return builder().build();
}
/**
* @return receiptUrl
*/
public java.util.List < String > getReceiptUrl() {
return this.receiptUrl;
}
public static final class Builder {
private java.util.List < String > receiptUrl;
/**
* ReceiptUrl.
*/
public Builder receiptUrl(java.util.List < String > receiptUrl) {
this.receiptUrl = receiptUrl;
return this;
}
public ReceiptUrls build() {
return new ReceiptUrls(this);
}
}
}
public static class UserFiles extends TeaModel {
@NameInMap("UserFile")
private java.util.List < String > userFile;
private UserFiles(Builder builder) {
this.userFile = builder.userFile;
}
public static Builder builder() {
return new Builder();
}
public static UserFiles create() {
return builder().build();
}
/**
* @return userFile
*/
public java.util.List < String > getUserFile() {
return this.userFile;
}
public static final class Builder {
private java.util.List < String > userFile;
/**
* UserFile.
*/
public Builder userFile(java.util.List < String > userFile) {
this.userFile = userFile;
return this;
}
public UserFiles build() {
return new UserFiles(this);
}
}
}
public static class Supplement extends TeaModel {
@NameInMap("AcceptExpirationDate")
private Long acceptExpirationDate;
@NameInMap("AcceptTime")
private Long acceptTime;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("Content")
private String content;
@NameInMap("OfficialFile")
private String officialFile;
@NameInMap("OperateTime")
private Long operateTime;
@NameInMap("OrderId")
private String orderId;
@NameInMap("SbjExpirationDate")
private Long sbjExpirationDate;
@NameInMap("SendTime")
private Long sendTime;
@NameInMap("SerialNumber")
private String serialNumber;
@NameInMap("SupplementId")
private Long supplementId;
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UserFiles")
private UserFiles userFiles;
private Supplement(Builder builder) {
this.acceptExpirationDate = builder.acceptExpirationDate;
this.acceptTime = builder.acceptTime;
this.applicationType = builder.applicationType;
this.content = builder.content;
this.officialFile = builder.officialFile;
this.operateTime = builder.operateTime;
this.orderId = builder.orderId;
this.sbjExpirationDate = builder.sbjExpirationDate;
this.sendTime = builder.sendTime;
this.serialNumber = builder.serialNumber;
this.supplementId = builder.supplementId;
this.supplementStatus = builder.supplementStatus;
this.trademarkNumber = builder.trademarkNumber;
this.userFiles = builder.userFiles;
}
public static Builder builder() {
return new Builder();
}
public static Supplement create() {
return builder().build();
}
/**
* @return acceptExpirationDate
*/
public Long getAcceptExpirationDate() {
return this.acceptExpirationDate;
}
/**
* @return acceptTime
*/
public Long getAcceptTime() {
return this.acceptTime;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return content
*/
public String getContent() {
return this.content;
}
/**
* @return officialFile
*/
public String getOfficialFile() {
return this.officialFile;
}
/**
* @return operateTime
*/
public Long getOperateTime() {
return this.operateTime;
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return sbjExpirationDate
*/
public Long getSbjExpirationDate() {
return this.sbjExpirationDate;
}
/**
* @return sendTime
*/
public Long getSendTime() {
return this.sendTime;
}
/**
* @return serialNumber
*/
public String getSerialNumber() {
return this.serialNumber;
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return userFiles
*/
public UserFiles getUserFiles() {
return this.userFiles;
}
public static final class Builder {
private Long acceptExpirationDate;
private Long acceptTime;
private Integer applicationType;
private String content;
private String officialFile;
private Long operateTime;
private String orderId;
private Long sbjExpirationDate;
private Long sendTime;
private String serialNumber;
private Long supplementId;
private Integer supplementStatus;
private String trademarkNumber;
private UserFiles userFiles;
/**
* AcceptExpirationDate.
*/
public Builder acceptExpirationDate(Long acceptExpirationDate) {
this.acceptExpirationDate = acceptExpirationDate;
return this;
}
/**
* AcceptTime.
*/
public Builder acceptTime(Long acceptTime) {
this.acceptTime = acceptTime;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* Content.
*/
public Builder content(String content) {
this.content = content;
return this;
}
/**
* OfficialFile.
*/
public Builder officialFile(String officialFile) {
this.officialFile = officialFile;
return this;
}
/**
* OperateTime.
*/
public Builder operateTime(Long operateTime) {
this.operateTime = operateTime;
return this;
}
/**
* OrderId.
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* SbjExpirationDate.
*/
public Builder sbjExpirationDate(Long sbjExpirationDate) {
this.sbjExpirationDate = sbjExpirationDate;
return this;
}
/**
* SendTime.
*/
public Builder sendTime(Long sendTime) {
this.sendTime = sendTime;
return this;
}
/**
* SerialNumber.
*/
public Builder serialNumber(String serialNumber) {
this.serialNumber = serialNumber;
return this;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.supplementId = supplementId;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.supplementStatus = supplementStatus;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UserFiles.
*/
public Builder userFiles(UserFiles userFiles) {
this.userFiles = userFiles;
return this;
}
public Supplement build() {
return new Supplement(this);
}
}
}
public static class Supplements extends TeaModel {
@NameInMap("Supplement")
private java.util.List < Supplement> supplement;
private Supplements(Builder builder) {
this.supplement = builder.supplement;
}
public static Builder builder() {
return new Builder();
}
public static Supplements create() {
return builder().build();
}
/**
* @return supplement
*/
public java.util.List < Supplement> getSupplement() {
return this.supplement;
}
public static final class Builder {
private java.util.List < Supplement> supplement;
/**
* Supplement.
*/
public Builder supplement(java.util.List < Supplement> supplement) {
this.supplement = supplement;
return this;
}
public Supplements build() {
return new Supplements(this);
}
}
}
public static class ThirdClassification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
private ThirdClassification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
}
public static Builder builder() {
return new Builder();
}
public static ThirdClassification 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 ThirdClassification build() {
return new ThirdClassification(this);
}
}
}
public static class ThirdClassifications extends TeaModel {
@NameInMap("ThirdClassification")
private java.util.List < ThirdClassification> thirdClassification;
private ThirdClassifications(Builder builder) {
this.thirdClassification = builder.thirdClassification;
}
public static Builder builder() {
return new Builder();
}
public static ThirdClassifications create() {
return builder().build();
}
/**
* @return thirdClassification
*/
public java.util.List < ThirdClassification> getThirdClassification() {
return this.thirdClassification;
}
public static final class Builder {
private java.util.List < ThirdClassification> thirdClassification;
/**
* ThirdClassification.
*/
public Builder thirdClassification(java.util.List < ThirdClassification> thirdClassification) {
this.thirdClassification = thirdClassification;
return this;
}
public ThirdClassifications build() {
return new ThirdClassifications(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeTrademarkDetailForInnerRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeTrademarkDetailForInnerRequest} extends {@link RequestModel}
*
* <p>DescribeTrademarkDetailForInnerRequest</p>
*/
public class DescribeTrademarkDetailForInnerRequest extends Request {
@Query
@NameInMap("Uid")
@Validation(required = true)
private String uid;
@Query
@NameInMap("Umid")
private String umid;
private DescribeTrademarkDetailForInnerRequest(Builder builder) {
super(builder);
this.uid = builder.uid;
this.umid = builder.umid;
}
public static Builder builder() {
return new Builder();
}
public static DescribeTrademarkDetailForInnerRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return uid
*/
public String getUid() {
return this.uid;
}
/**
* @return umid
*/
public String getUmid() {
return this.umid;
}
public static final class Builder extends Request.Builder<DescribeTrademarkDetailForInnerRequest, Builder> {
private String uid;
private String umid;
private Builder() {
super();
}
private Builder(DescribeTrademarkDetailForInnerRequest request) {
super(request);
this.uid = request.uid;
this.umid = request.umid;
}
/**
* Uid.
*/
public Builder uid(String uid) {
this.putQueryParameter("Uid", uid);
this.uid = uid;
return this;
}
/**
* Umid.
*/
public Builder umid(String umid) {
this.putQueryParameter("Umid", umid);
this.umid = umid;
return this;
}
@Override
public DescribeTrademarkDetailForInnerRequest build() {
return new DescribeTrademarkDetailForInnerRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeTrademarkDetailForInnerResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeTrademarkDetailForInnerResponse} extends {@link TeaModel}
*
* <p>DescribeTrademarkDetailForInnerResponse</p>
*/
public class DescribeTrademarkDetailForInnerResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DescribeTrademarkDetailForInnerResponseBody body;
private DescribeTrademarkDetailForInnerResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DescribeTrademarkDetailForInnerResponse 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 DescribeTrademarkDetailForInnerResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DescribeTrademarkDetailForInnerResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DescribeTrademarkDetailForInnerResponseBody body);
@Override
DescribeTrademarkDetailForInnerResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DescribeTrademarkDetailForInnerResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DescribeTrademarkDetailForInnerResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DescribeTrademarkDetailForInnerResponse 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(DescribeTrademarkDetailForInnerResponseBody body) {
this.body = body;
return this;
}
@Override
public DescribeTrademarkDetailForInnerResponse build() {
return new DescribeTrademarkDetailForInnerResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/DescribeTrademarkDetailForInnerResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeTrademarkDetailForInnerResponseBody} extends {@link TeaModel}
*
* <p>DescribeTrademarkDetailForInnerResponseBody</p>
*/
public class DescribeTrademarkDetailForInnerResponseBody extends TeaModel {
@NameInMap("Agency")
private String agency;
@NameInMap("ApplyDate")
private String applyDate;
@NameInMap("Classification")
private String classification;
@NameInMap("ExclusiveDateLimit")
private String exclusiveDateLimit;
@NameInMap("FlowList")
private java.util.List < FlowList> flowList;
@NameInMap("Image")
private String image;
@NameInMap("ImageElement")
private String imageElement;
@NameInMap("IntlRegDate")
private String intlRegDate;
@NameInMap("LastProcedureStatus")
private String lastProcedureStatus;
@NameInMap("Name")
private String name;
@NameInMap("NoticeList")
private java.util.List < NoticeList> noticeList;
@NameInMap("OwnerAddress")
private String ownerAddress;
@NameInMap("OwnerEnAddress")
private String ownerEnAddress;
@NameInMap("OwnerEnName")
private String ownerEnName;
@NameInMap("OwnerName")
private String ownerName;
@NameInMap("PreAnnDate")
private String preAnnDate;
@NameInMap("PreAnnNum")
private String preAnnNum;
@NameInMap("PriorityDate")
private String priorityDate;
@NameInMap("Product")
private String product;
@NameInMap("ProductDescription")
private String productDescription;
@NameInMap("RegAnnDate")
private String regAnnDate;
@NameInMap("RegAnnNum")
private Integer regAnnNum;
@NameInMap("RegistrationNumber")
private String registrationNumber;
@NameInMap("RegistrationType")
private String registrationType;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Share")
private String share;
@NameInMap("SimilarGroup")
private String similarGroup;
@NameInMap("Status")
private String status;
@NameInMap("SubsequentDesignationDate")
private String subsequentDesignationDate;
@NameInMap("Uid")
private String uid;
private DescribeTrademarkDetailForInnerResponseBody(Builder builder) {
this.agency = builder.agency;
this.applyDate = builder.applyDate;
this.classification = builder.classification;
this.exclusiveDateLimit = builder.exclusiveDateLimit;
this.flowList = builder.flowList;
this.image = builder.image;
this.imageElement = builder.imageElement;
this.intlRegDate = builder.intlRegDate;
this.lastProcedureStatus = builder.lastProcedureStatus;
this.name = builder.name;
this.noticeList = builder.noticeList;
this.ownerAddress = builder.ownerAddress;
this.ownerEnAddress = builder.ownerEnAddress;
this.ownerEnName = builder.ownerEnName;
this.ownerName = builder.ownerName;
this.preAnnDate = builder.preAnnDate;
this.preAnnNum = builder.preAnnNum;
this.priorityDate = builder.priorityDate;
this.product = builder.product;
this.productDescription = builder.productDescription;
this.regAnnDate = builder.regAnnDate;
this.regAnnNum = builder.regAnnNum;
this.registrationNumber = builder.registrationNumber;
this.registrationType = builder.registrationType;
this.requestId = builder.requestId;
this.share = builder.share;
this.similarGroup = builder.similarGroup;
this.status = builder.status;
this.subsequentDesignationDate = builder.subsequentDesignationDate;
this.uid = builder.uid;
}
public static Builder builder() {
return new Builder();
}
public static DescribeTrademarkDetailForInnerResponseBody create() {
return builder().build();
}
/**
* @return agency
*/
public String getAgency() {
return this.agency;
}
/**
* @return applyDate
*/
public String getApplyDate() {
return this.applyDate;
}
/**
* @return classification
*/
public String getClassification() {
return this.classification;
}
/**
* @return exclusiveDateLimit
*/
public String getExclusiveDateLimit() {
return this.exclusiveDateLimit;
}
/**
* @return flowList
*/
public java.util.List < FlowList> getFlowList() {
return this.flowList;
}
/**
* @return image
*/
public String getImage() {
return this.image;
}
/**
* @return imageElement
*/
public String getImageElement() {
return this.imageElement;
}
/**
* @return intlRegDate
*/
public String getIntlRegDate() {
return this.intlRegDate;
}
/**
* @return lastProcedureStatus
*/
public String getLastProcedureStatus() {
return this.lastProcedureStatus;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return noticeList
*/
public java.util.List < NoticeList> getNoticeList() {
return this.noticeList;
}
/**
* @return ownerAddress
*/
public String getOwnerAddress() {
return this.ownerAddress;
}
/**
* @return ownerEnAddress
*/
public String getOwnerEnAddress() {
return this.ownerEnAddress;
}
/**
* @return ownerEnName
*/
public String getOwnerEnName() {
return this.ownerEnName;
}
/**
* @return ownerName
*/
public String getOwnerName() {
return this.ownerName;
}
/**
* @return preAnnDate
*/
public String getPreAnnDate() {
return this.preAnnDate;
}
/**
* @return preAnnNum
*/
public String getPreAnnNum() {
return this.preAnnNum;
}
/**
* @return priorityDate
*/
public String getPriorityDate() {
return this.priorityDate;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
/**
* @return productDescription
*/
public String getProductDescription() {
return this.productDescription;
}
/**
* @return regAnnDate
*/
public String getRegAnnDate() {
return this.regAnnDate;
}
/**
* @return regAnnNum
*/
public Integer getRegAnnNum() {
return this.regAnnNum;
}
/**
* @return registrationNumber
*/
public String getRegistrationNumber() {
return this.registrationNumber;
}
/**
* @return registrationType
*/
public String getRegistrationType() {
return this.registrationType;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return share
*/
public String getShare() {
return this.share;
}
/**
* @return similarGroup
*/
public String getSimilarGroup() {
return this.similarGroup;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return subsequentDesignationDate
*/
public String getSubsequentDesignationDate() {
return this.subsequentDesignationDate;
}
/**
* @return uid
*/
public String getUid() {
return this.uid;
}
public static final class Builder {
private String agency;
private String applyDate;
private String classification;
private String exclusiveDateLimit;
private java.util.List < FlowList> flowList;
private String image;
private String imageElement;
private String intlRegDate;
private String lastProcedureStatus;
private String name;
private java.util.List < NoticeList> noticeList;
private String ownerAddress;
private String ownerEnAddress;
private String ownerEnName;
private String ownerName;
private String preAnnDate;
private String preAnnNum;
private String priorityDate;
private String product;
private String productDescription;
private String regAnnDate;
private Integer regAnnNum;
private String registrationNumber;
private String registrationType;
private String requestId;
private String share;
private String similarGroup;
private String status;
private String subsequentDesignationDate;
private String uid;
/**
* Agency.
*/
public Builder agency(String agency) {
this.agency = agency;
return this;
}
/**
* ApplyDate.
*/
public Builder applyDate(String applyDate) {
this.applyDate = applyDate;
return this;
}
/**
* Classification.
*/
public Builder classification(String classification) {
this.classification = classification;
return this;
}
/**
* ExclusiveDateLimit.
*/
public Builder exclusiveDateLimit(String exclusiveDateLimit) {
this.exclusiveDateLimit = exclusiveDateLimit;
return this;
}
/**
* FlowList.
*/
public Builder flowList(java.util.List < FlowList> flowList) {
this.flowList = flowList;
return this;
}
/**
* Image.
*/
public Builder image(String image) {
this.image = image;
return this;
}
/**
* ImageElement.
*/
public Builder imageElement(String imageElement) {
this.imageElement = imageElement;
return this;
}
/**
* IntlRegDate.
*/
public Builder intlRegDate(String intlRegDate) {
this.intlRegDate = intlRegDate;
return this;
}
/**
* LastProcedureStatus.
*/
public Builder lastProcedureStatus(String lastProcedureStatus) {
this.lastProcedureStatus = lastProcedureStatus;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* NoticeList.
*/
public Builder noticeList(java.util.List < NoticeList> noticeList) {
this.noticeList = noticeList;
return this;
}
/**
* OwnerAddress.
*/
public Builder ownerAddress(String ownerAddress) {
this.ownerAddress = ownerAddress;
return this;
}
/**
* OwnerEnAddress.
*/
public Builder ownerEnAddress(String ownerEnAddress) {
this.ownerEnAddress = ownerEnAddress;
return this;
}
/**
* OwnerEnName.
*/
public Builder ownerEnName(String ownerEnName) {
this.ownerEnName = ownerEnName;
return this;
}
/**
* OwnerName.
*/
public Builder ownerName(String ownerName) {
this.ownerName = ownerName;
return this;
}
/**
* PreAnnDate.
*/
public Builder preAnnDate(String preAnnDate) {
this.preAnnDate = preAnnDate;
return this;
}
/**
* PreAnnNum.
*/
public Builder preAnnNum(String preAnnNum) {
this.preAnnNum = preAnnNum;
return this;
}
/**
* PriorityDate.
*/
public Builder priorityDate(String priorityDate) {
this.priorityDate = priorityDate;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.product = product;
return this;
}
/**
* ProductDescription.
*/
public Builder productDescription(String productDescription) {
this.productDescription = productDescription;
return this;
}
/**
* RegAnnDate.
*/
public Builder regAnnDate(String regAnnDate) {
this.regAnnDate = regAnnDate;
return this;
}
/**
* RegAnnNum.
*/
public Builder regAnnNum(Integer regAnnNum) {
this.regAnnNum = regAnnNum;
return this;
}
/**
* RegistrationNumber.
*/
public Builder registrationNumber(String registrationNumber) {
this.registrationNumber = registrationNumber;
return this;
}
/**
* RegistrationType.
*/
public Builder registrationType(String registrationType) {
this.registrationType = registrationType;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Share.
*/
public Builder share(String share) {
this.share = share;
return this;
}
/**
* SimilarGroup.
*/
public Builder similarGroup(String similarGroup) {
this.similarGroup = similarGroup;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* SubsequentDesignationDate.
*/
public Builder subsequentDesignationDate(String subsequentDesignationDate) {
this.subsequentDesignationDate = subsequentDesignationDate;
return this;
}
/**
* Uid.
*/
public Builder uid(String uid) {
this.uid = uid;
return this;
}
public DescribeTrademarkDetailForInnerResponseBody build() {
return new DescribeTrademarkDetailForInnerResponseBody(this);
}
}
public static class FlowList extends TeaModel {
@NameInMap("Date")
private String date;
@NameInMap("ProcedureCode")
private String procedureCode;
@NameInMap("ProcedureDate")
private String procedureDate;
@NameInMap("ProcedureName")
private String procedureName;
@NameInMap("ProcedureResult")
private String procedureResult;
@NameInMap("ProcedureStep")
private String procedureStep;
@NameInMap("RegistrationNumber")
private String registrationNumber;
private FlowList(Builder builder) {
this.date = builder.date;
this.procedureCode = builder.procedureCode;
this.procedureDate = builder.procedureDate;
this.procedureName = builder.procedureName;
this.procedureResult = builder.procedureResult;
this.procedureStep = builder.procedureStep;
this.registrationNumber = builder.registrationNumber;
}
public static Builder builder() {
return new Builder();
}
public static FlowList create() {
return builder().build();
}
/**
* @return date
*/
public String getDate() {
return this.date;
}
/**
* @return procedureCode
*/
public String getProcedureCode() {
return this.procedureCode;
}
/**
* @return procedureDate
*/
public String getProcedureDate() {
return this.procedureDate;
}
/**
* @return procedureName
*/
public String getProcedureName() {
return this.procedureName;
}
/**
* @return procedureResult
*/
public String getProcedureResult() {
return this.procedureResult;
}
/**
* @return procedureStep
*/
public String getProcedureStep() {
return this.procedureStep;
}
/**
* @return registrationNumber
*/
public String getRegistrationNumber() {
return this.registrationNumber;
}
public static final class Builder {
private String date;
private String procedureCode;
private String procedureDate;
private String procedureName;
private String procedureResult;
private String procedureStep;
private String registrationNumber;
/**
* Date.
*/
public Builder date(String date) {
this.date = date;
return this;
}
/**
* ProcedureCode.
*/
public Builder procedureCode(String procedureCode) {
this.procedureCode = procedureCode;
return this;
}
/**
* ProcedureDate.
*/
public Builder procedureDate(String procedureDate) {
this.procedureDate = procedureDate;
return this;
}
/**
* ProcedureName.
*/
public Builder procedureName(String procedureName) {
this.procedureName = procedureName;
return this;
}
/**
* ProcedureResult.
*/
public Builder procedureResult(String procedureResult) {
this.procedureResult = procedureResult;
return this;
}
/**
* ProcedureStep.
*/
public Builder procedureStep(String procedureStep) {
this.procedureStep = procedureStep;
return this;
}
/**
* RegistrationNumber.
*/
public Builder registrationNumber(String registrationNumber) {
this.registrationNumber = registrationNumber;
return this;
}
public FlowList build() {
return new FlowList(this);
}
}
}
public static class NoticeList extends TeaModel {
@NameInMap("AnnDate")
private String annDate;
@NameInMap("AnnId")
private String annId;
@NameInMap("AnnNum")
private String annNum;
@NameInMap("AnnTypeCode")
private String annTypeCode;
@NameInMap("AnnTypeName")
private String annTypeName;
@NameInMap("Applicant")
private String applicant;
@NameInMap("Date")
private String date;
@NameInMap("ImageUrl")
private String imageUrl;
@NameInMap("OriginalImageUrl")
private String originalImageUrl;
@NameInMap("PageNo")
private String pageNo;
@NameInMap("ReactNum")
private String reactNum;
@NameInMap("RegistrationNumber")
private String registrationNumber;
@NameInMap("TrademarkName")
private String trademarkName;
private NoticeList(Builder builder) {
this.annDate = builder.annDate;
this.annId = builder.annId;
this.annNum = builder.annNum;
this.annTypeCode = builder.annTypeCode;
this.annTypeName = builder.annTypeName;
this.applicant = builder.applicant;
this.date = builder.date;
this.imageUrl = builder.imageUrl;
this.originalImageUrl = builder.originalImageUrl;
this.pageNo = builder.pageNo;
this.reactNum = builder.reactNum;
this.registrationNumber = builder.registrationNumber;
this.trademarkName = builder.trademarkName;
}
public static Builder builder() {
return new Builder();
}
public static NoticeList create() {
return builder().build();
}
/**
* @return annDate
*/
public String getAnnDate() {
return this.annDate;
}
/**
* @return annId
*/
public String getAnnId() {
return this.annId;
}
/**
* @return annNum
*/
public String getAnnNum() {
return this.annNum;
}
/**
* @return annTypeCode
*/
public String getAnnTypeCode() {
return this.annTypeCode;
}
/**
* @return annTypeName
*/
public String getAnnTypeName() {
return this.annTypeName;
}
/**
* @return applicant
*/
public String getApplicant() {
return this.applicant;
}
/**
* @return date
*/
public String getDate() {
return this.date;
}
/**
* @return imageUrl
*/
public String getImageUrl() {
return this.imageUrl;
}
/**
* @return originalImageUrl
*/
public String getOriginalImageUrl() {
return this.originalImageUrl;
}
/**
* @return pageNo
*/
public String getPageNo() {
return this.pageNo;
}
/**
* @return reactNum
*/
public String getReactNum() {
return this.reactNum;
}
/**
* @return registrationNumber
*/
public String getRegistrationNumber() {
return this.registrationNumber;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
public static final class Builder {
private String annDate;
private String annId;
private String annNum;
private String annTypeCode;
private String annTypeName;
private String applicant;
private String date;
private String imageUrl;
private String originalImageUrl;
private String pageNo;
private String reactNum;
private String registrationNumber;
private String trademarkName;
/**
* AnnDate.
*/
public Builder annDate(String annDate) {
this.annDate = annDate;
return this;
}
/**
* AnnId.
*/
public Builder annId(String annId) {
this.annId = annId;
return this;
}
/**
* AnnNum.
*/
public Builder annNum(String annNum) {
this.annNum = annNum;
return this;
}
/**
* AnnTypeCode.
*/
public Builder annTypeCode(String annTypeCode) {
this.annTypeCode = annTypeCode;
return this;
}
/**
* AnnTypeName.
*/
public Builder annTypeName(String annTypeName) {
this.annTypeName = annTypeName;
return this;
}
/**
* Applicant.
*/
public Builder applicant(String applicant) {
this.applicant = applicant;
return this;
}
/**
* Date.
*/
public Builder date(String date) {
this.date = date;
return this;
}
/**
* ImageUrl.
*/
public Builder imageUrl(String imageUrl) {
this.imageUrl = imageUrl;
return this;
}
/**
* OriginalImageUrl.
*/
public Builder originalImageUrl(String originalImageUrl) {
this.originalImageUrl = originalImageUrl;
return this;
}
/**
* PageNo.
*/
public Builder pageNo(String pageNo) {
this.pageNo = pageNo;
return this;
}
/**
* ReactNum.
*/
public Builder reactNum(String reactNum) {
this.reactNum = reactNum;
return this;
}
/**
* RegistrationNumber.
*/
public Builder registrationNumber(String registrationNumber) {
this.registrationNumber = registrationNumber;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.trademarkName = trademarkName;
return this;
}
public NoticeList build() {
return new NoticeList(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GenerateUploadFilePolicyRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.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("FileType")
@Validation(required = true)
private String fileType;
private GenerateUploadFilePolicyRequest(Builder builder) {
super(builder);
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 fileType
*/
public String getFileType() {
return this.fileType;
}
public static final class Builder extends Request.Builder<GenerateUploadFilePolicyRequest, Builder> {
private String fileType;
private Builder() {
super();
}
private Builder(GenerateUploadFilePolicyRequest request) {
super(request);
this.fileType = request.fileType;
}
/**
* 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-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GenerateUploadFilePolicyResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.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")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
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-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GenerateUploadFilePolicyResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.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;
/**
* OSSAccessKeyId
*/
public Builder accessId(String accessId) {
this.accessId = accessId;
return this;
}
/**
* EncodedPolicy.
*/
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-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetAlipayUrlRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAlipayUrlRequest} extends {@link RequestModel}
*
* <p>GetAlipayUrlRequest</p>
*/
public class GetAlipayUrlRequest extends Request {
@Query
@NameInMap("BizType")
@Validation(required = true)
private String bizType;
@Query
@NameInMap("OrderId")
@Validation(required = true, minimum = 1)
private Long orderId;
@Query
@NameInMap("ReturnUrl")
private String returnUrl;
@Query
@NameInMap("Type")
@Validation(required = true)
private String type;
private GetAlipayUrlRequest(Builder builder) {
super(builder);
this.bizType = builder.bizType;
this.orderId = builder.orderId;
this.returnUrl = builder.returnUrl;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static GetAlipayUrlRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
/**
* @return orderId
*/
public Long getOrderId() {
return this.orderId;
}
/**
* @return returnUrl
*/
public String getReturnUrl() {
return this.returnUrl;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder extends Request.Builder<GetAlipayUrlRequest, Builder> {
private String bizType;
private Long orderId;
private String returnUrl;
private String type;
private Builder() {
super();
}
private Builder(GetAlipayUrlRequest request) {
super(request);
this.bizType = request.bizType;
this.orderId = request.orderId;
this.returnUrl = request.returnUrl;
this.type = request.type;
}
/**
* BizType.
*/
public Builder bizType(String bizType) {
this.putQueryParameter("BizType", bizType);
this.bizType = bizType;
return this;
}
/**
* OrderId.
*/
public Builder orderId(Long orderId) {
this.putQueryParameter("OrderId", orderId);
this.orderId = orderId;
return this;
}
/**
* ReturnUrl.
*/
public Builder returnUrl(String returnUrl) {
this.putQueryParameter("ReturnUrl", returnUrl);
this.returnUrl = returnUrl;
return this;
}
/**
* Type.
*/
public Builder type(String type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public GetAlipayUrlRequest build() {
return new GetAlipayUrlRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetAlipayUrlResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAlipayUrlResponse} extends {@link TeaModel}
*
* <p>GetAlipayUrlResponse</p>
*/
public class GetAlipayUrlResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private GetAlipayUrlResponseBody body;
private GetAlipayUrlResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetAlipayUrlResponse 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 GetAlipayUrlResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetAlipayUrlResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetAlipayUrlResponseBody body);
@Override
GetAlipayUrlResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetAlipayUrlResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetAlipayUrlResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetAlipayUrlResponse 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(GetAlipayUrlResponseBody body) {
this.body = body;
return this;
}
@Override
public GetAlipayUrlResponse build() {
return new GetAlipayUrlResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetAlipayUrlResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAlipayUrlResponseBody} extends {@link TeaModel}
*
* <p>GetAlipayUrlResponseBody</p>
*/
public class GetAlipayUrlResponseBody extends TeaModel {
@NameInMap("Data")
private String data;
@NameInMap("RequestId")
private String requestId;
private GetAlipayUrlResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetAlipayUrlResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String data;
private String requestId;
/**
* Data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetAlipayUrlResponseBody build() {
return new GetAlipayUrlResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetOrderConfirmUrlRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetOrderConfirmUrlRequest} extends {@link RequestModel}
*
* <p>GetOrderConfirmUrlRequest</p>
*/
public class GetOrderConfirmUrlRequest extends Request {
@Query
@NameInMap("Items")
private java.util.List < Items> items;
@Query
@NameInMap("OutTraceCode")
private String outTraceCode;
@Query
@NameInMap("OutTraceType")
private String outTraceType;
private GetOrderConfirmUrlRequest(Builder builder) {
super(builder);
this.items = builder.items;
this.outTraceCode = builder.outTraceCode;
this.outTraceType = builder.outTraceType;
}
public static Builder builder() {
return new Builder();
}
public static GetOrderConfirmUrlRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return items
*/
public java.util.List < Items> getItems() {
return this.items;
}
/**
* @return outTraceCode
*/
public String getOutTraceCode() {
return this.outTraceCode;
}
/**
* @return outTraceType
*/
public String getOutTraceType() {
return this.outTraceType;
}
public static final class Builder extends Request.Builder<GetOrderConfirmUrlRequest, Builder> {
private java.util.List < Items> items;
private String outTraceCode;
private String outTraceType;
private Builder() {
super();
}
private Builder(GetOrderConfirmUrlRequest request) {
super(request);
this.items = request.items;
this.outTraceCode = request.outTraceCode;
this.outTraceType = request.outTraceType;
}
/**
* Items.
*/
public Builder items(java.util.List < Items> items) {
this.putQueryParameter("Items", items);
this.items = items;
return this;
}
/**
* OutTraceCode.
*/
public Builder outTraceCode(String outTraceCode) {
this.putQueryParameter("OutTraceCode", outTraceCode);
this.outTraceCode = outTraceCode;
return this;
}
/**
* OutTraceType.
*/
public Builder outTraceType(String outTraceType) {
this.putQueryParameter("OutTraceType", outTraceType);
this.outTraceType = outTraceType;
return this;
}
@Override
public GetOrderConfirmUrlRequest build() {
return new GetOrderConfirmUrlRequest(this);
}
}
public static class Items extends TeaModel {
@NameInMap("ItemCode")
private String itemCode;
@NameInMap("Quantity")
private Long quantity;
private Items(Builder builder) {
this.itemCode = builder.itemCode;
this.quantity = builder.quantity;
}
public static Builder builder() {
return new Builder();
}
public static Items create() {
return builder().build();
}
/**
* @return itemCode
*/
public String getItemCode() {
return this.itemCode;
}
/**
* @return quantity
*/
public Long getQuantity() {
return this.quantity;
}
public static final class Builder {
private String itemCode;
private Long quantity;
/**
* ItemCode.
*/
public Builder itemCode(String itemCode) {
this.itemCode = itemCode;
return this;
}
/**
* Quantity.
*/
public Builder quantity(Long quantity) {
this.quantity = quantity;
return this;
}
public Items build() {
return new Items(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetOrderConfirmUrlResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetOrderConfirmUrlResponse} extends {@link TeaModel}
*
* <p>GetOrderConfirmUrlResponse</p>
*/
public class GetOrderConfirmUrlResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private GetOrderConfirmUrlResponseBody body;
private GetOrderConfirmUrlResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetOrderConfirmUrlResponse 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 GetOrderConfirmUrlResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetOrderConfirmUrlResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetOrderConfirmUrlResponseBody body);
@Override
GetOrderConfirmUrlResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetOrderConfirmUrlResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetOrderConfirmUrlResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetOrderConfirmUrlResponse 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(GetOrderConfirmUrlResponseBody body) {
this.body = body;
return this;
}
@Override
public GetOrderConfirmUrlResponse build() {
return new GetOrderConfirmUrlResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetOrderConfirmUrlResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetOrderConfirmUrlResponseBody} extends {@link TeaModel}
*
* <p>GetOrderConfirmUrlResponseBody</p>
*/
public class GetOrderConfirmUrlResponseBody extends TeaModel {
@NameInMap("ConfirmUrl")
private String confirmUrl;
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private GetOrderConfirmUrlResponseBody(Builder builder) {
this.confirmUrl = builder.confirmUrl;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static GetOrderConfirmUrlResponseBody create() {
return builder().build();
}
/**
* @return confirmUrl
*/
public String getConfirmUrl() {
return this.confirmUrl;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String confirmUrl;
private String errorCode;
private String errorMessage;
private String requestId;
private Boolean success;
/**
* ConfirmUrl.
*/
public Builder confirmUrl(String confirmUrl) {
this.confirmUrl = confirmUrl;
return this;
}
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
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 GetOrderConfirmUrlResponseBody build() {
return new GetOrderConfirmUrlResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetStsByTaobaoUidRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetStsByTaobaoUidRequest} extends {@link RequestModel}
*
* <p>GetStsByTaobaoUidRequest</p>
*/
public class GetStsByTaobaoUidRequest extends Request {
@Query
@NameInMap("AliyunUid")
private String aliyunUid;
@Query
@NameInMap("TbUid")
@Validation(required = true)
private String tbUid;
private GetStsByTaobaoUidRequest(Builder builder) {
super(builder);
this.aliyunUid = builder.aliyunUid;
this.tbUid = builder.tbUid;
}
public static Builder builder() {
return new Builder();
}
public static GetStsByTaobaoUidRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aliyunUid
*/
public String getAliyunUid() {
return this.aliyunUid;
}
/**
* @return tbUid
*/
public String getTbUid() {
return this.tbUid;
}
public static final class Builder extends Request.Builder<GetStsByTaobaoUidRequest, Builder> {
private String aliyunUid;
private String tbUid;
private Builder() {
super();
}
private Builder(GetStsByTaobaoUidRequest request) {
super(request);
this.aliyunUid = request.aliyunUid;
this.tbUid = request.tbUid;
}
/**
* AliyunUid.
*/
public Builder aliyunUid(String aliyunUid) {
this.putQueryParameter("AliyunUid", aliyunUid);
this.aliyunUid = aliyunUid;
return this;
}
/**
* TbUid.
*/
public Builder tbUid(String tbUid) {
this.putQueryParameter("TbUid", tbUid);
this.tbUid = tbUid;
return this;
}
@Override
public GetStsByTaobaoUidRequest build() {
return new GetStsByTaobaoUidRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetStsByTaobaoUidResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetStsByTaobaoUidResponse} extends {@link TeaModel}
*
* <p>GetStsByTaobaoUidResponse</p>
*/
public class GetStsByTaobaoUidResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private GetStsByTaobaoUidResponseBody body;
private GetStsByTaobaoUidResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetStsByTaobaoUidResponse 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 GetStsByTaobaoUidResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetStsByTaobaoUidResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetStsByTaobaoUidResponseBody body);
@Override
GetStsByTaobaoUidResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetStsByTaobaoUidResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetStsByTaobaoUidResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetStsByTaobaoUidResponse 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(GetStsByTaobaoUidResponseBody body) {
this.body = body;
return this;
}
@Override
public GetStsByTaobaoUidResponse build() {
return new GetStsByTaobaoUidResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/GetStsByTaobaoUidResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetStsByTaobaoUidResponseBody} extends {@link TeaModel}
*
* <p>GetStsByTaobaoUidResponseBody</p>
*/
public class GetStsByTaobaoUidResponseBody extends TeaModel {
@NameInMap("AccessKeyId")
private String accessKeyId;
@NameInMap("AccessKeySecret")
private String accessKeySecret;
@NameInMap("ErrorCode")
private String errorCode;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("Expiration")
private String expiration;
@NameInMap("RequestId")
private String requestId;
@NameInMap("SecurityToken")
private String securityToken;
@NameInMap("Success")
private Boolean success;
private GetStsByTaobaoUidResponseBody(Builder builder) {
this.accessKeyId = builder.accessKeyId;
this.accessKeySecret = builder.accessKeySecret;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.expiration = builder.expiration;
this.requestId = builder.requestId;
this.securityToken = builder.securityToken;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static GetStsByTaobaoUidResponseBody create() {
return builder().build();
}
/**
* @return accessKeyId
*/
public String getAccessKeyId() {
return this.accessKeyId;
}
/**
* @return accessKeySecret
*/
public String getAccessKeySecret() {
return this.accessKeySecret;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return expiration
*/
public String getExpiration() {
return this.expiration;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return securityToken
*/
public String getSecurityToken() {
return this.securityToken;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String accessKeyId;
private String accessKeySecret;
private String errorCode;
private String errorMessage;
private String expiration;
private String requestId;
private String securityToken;
private Boolean success;
/**
* AccessKeyId.
*/
public Builder accessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
return this;
}
/**
* AccessKeySecret.
*/
public Builder accessKeySecret(String accessKeySecret) {
this.accessKeySecret = accessKeySecret;
return this;
}
/**
* ErrorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* Expiration.
*/
public Builder expiration(String expiration) {
this.expiration = expiration;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* SecurityToken.
*/
public Builder securityToken(String securityToken) {
this.securityToken = securityToken;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public GetStsByTaobaoUidResponseBody build() {
return new GetStsByTaobaoUidResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAdminTrademarkApplicationLogsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAdminTrademarkApplicationLogsRequest} extends {@link RequestModel}
*
* <p>ListAdminTrademarkApplicationLogsRequest</p>
*/
public class ListAdminTrademarkApplicationLogsRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private ListAdminTrademarkApplicationLogsRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static ListAdminTrademarkApplicationLogsRequest 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<ListAdminTrademarkApplicationLogsRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(ListAdminTrademarkApplicationLogsRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public ListAdminTrademarkApplicationLogsRequest build() {
return new ListAdminTrademarkApplicationLogsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAdminTrademarkApplicationLogsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAdminTrademarkApplicationLogsResponse} extends {@link TeaModel}
*
* <p>ListAdminTrademarkApplicationLogsResponse</p>
*/
public class ListAdminTrademarkApplicationLogsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListAdminTrademarkApplicationLogsResponseBody body;
private ListAdminTrademarkApplicationLogsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListAdminTrademarkApplicationLogsResponse 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 ListAdminTrademarkApplicationLogsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListAdminTrademarkApplicationLogsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListAdminTrademarkApplicationLogsResponseBody body);
@Override
ListAdminTrademarkApplicationLogsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListAdminTrademarkApplicationLogsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListAdminTrademarkApplicationLogsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListAdminTrademarkApplicationLogsResponse 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(ListAdminTrademarkApplicationLogsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListAdminTrademarkApplicationLogsResponse build() {
return new ListAdminTrademarkApplicationLogsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAdminTrademarkApplicationLogsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAdminTrademarkApplicationLogsResponseBody} extends {@link TeaModel}
*
* <p>ListAdminTrademarkApplicationLogsResponseBody</p>
*/
public class ListAdminTrademarkApplicationLogsResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TrademarkApplicationLogs")
private java.util.List < TrademarkApplicationLogs> trademarkApplicationLogs;
private ListAdminTrademarkApplicationLogsResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.trademarkApplicationLogs = builder.trademarkApplicationLogs;
}
public static Builder builder() {
return new Builder();
}
public static ListAdminTrademarkApplicationLogsResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return trademarkApplicationLogs
*/
public java.util.List < TrademarkApplicationLogs> getTrademarkApplicationLogs() {
return this.trademarkApplicationLogs;
}
public static final class Builder {
private String requestId;
private java.util.List < TrademarkApplicationLogs> trademarkApplicationLogs;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TrademarkApplicationLogs.
*/
public Builder trademarkApplicationLogs(java.util.List < TrademarkApplicationLogs> trademarkApplicationLogs) {
this.trademarkApplicationLogs = trademarkApplicationLogs;
return this;
}
public ListAdminTrademarkApplicationLogsResponseBody build() {
return new ListAdminTrademarkApplicationLogsResponseBody(this);
}
}
public static class TrademarkApplicationLogs extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("BizStatus")
private Integer bizStatus;
@NameInMap("Note")
private String note;
@NameInMap("OperateTime")
private Long operateTime;
@NameInMap("OperateType")
private Integer operateType;
private TrademarkApplicationLogs(Builder builder) {
this.bizId = builder.bizId;
this.bizStatus = builder.bizStatus;
this.note = builder.note;
this.operateTime = builder.operateTime;
this.operateType = builder.operateType;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplicationLogs create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return bizStatus
*/
public Integer getBizStatus() {
return this.bizStatus;
}
/**
* @return note
*/
public String getNote() {
return this.note;
}
/**
* @return operateTime
*/
public Long getOperateTime() {
return this.operateTime;
}
/**
* @return operateType
*/
public Integer getOperateType() {
return this.operateType;
}
public static final class Builder {
private String bizId;
private Integer bizStatus;
private String note;
private Long operateTime;
private Integer operateType;
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* BizStatus.
*/
public Builder bizStatus(Integer bizStatus) {
this.bizStatus = bizStatus;
return this;
}
/**
* Note.
*/
public Builder note(String note) {
this.note = note;
return this;
}
/**
* OperateTime.
*/
public Builder operateTime(Long operateTime) {
this.operateTime = operateTime;
return this;
}
/**
* OperateType.
*/
public Builder operateType(Integer operateType) {
this.operateType = operateType;
return this;
}
public TrademarkApplicationLogs build() {
return new TrademarkApplicationLogs(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAdminTrademarkApplicationsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAdminTrademarkApplicationsRequest} extends {@link RequestModel}
*
* <p>ListAdminTrademarkApplicationsRequest</p>
*/
public class ListAdminTrademarkApplicationsRequest extends Request {
@Query
@NameInMap("ApplicantName")
private String applicantName;
@Query
@NameInMap("ApplicationStatus")
@Validation(maximum = 200)
private Integer applicationStatus;
@Query
@NameInMap("ApplicationType")
private String applicationType;
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("OrderId")
private String orderId;
@Query
@NameInMap("PageNumber")
@Validation(maximum = 2147483647, minimum = 1)
private Integer pageNumber;
@Query
@NameInMap("PageSize")
@Validation(maximum = 200, minimum = 1)
private Integer pageSize;
@Query
@NameInMap("SortOrder")
private String sortOrder;
@Query
@NameInMap("SupplementStatus")
@Validation(maximum = 6, minimum = 1)
private Integer supplementStatus;
@Query
@NameInMap("TrademarkName")
private String trademarkName;
@Query
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@Query
@NameInMap("UserId")
private String userId;
private ListAdminTrademarkApplicationsRequest(Builder builder) {
super(builder);
this.applicantName = builder.applicantName;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.bizId = builder.bizId;
this.orderId = builder.orderId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.sortOrder = builder.sortOrder;
this.supplementStatus = builder.supplementStatus;
this.trademarkName = builder.trademarkName;
this.trademarkNumber = builder.trademarkNumber;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static ListAdminTrademarkApplicationsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public String getApplicationType() {
return this.applicationType;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return sortOrder
*/
public String getSortOrder() {
return this.sortOrder;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder extends Request.Builder<ListAdminTrademarkApplicationsRequest, Builder> {
private String applicantName;
private Integer applicationStatus;
private String applicationType;
private String bizId;
private String orderId;
private Integer pageNumber;
private Integer pageSize;
private String sortOrder;
private Integer supplementStatus;
private String trademarkName;
private String trademarkNumber;
private String userId;
private Builder() {
super();
}
private Builder(ListAdminTrademarkApplicationsRequest request) {
super(request);
this.applicantName = request.applicantName;
this.applicationStatus = request.applicationStatus;
this.applicationType = request.applicationType;
this.bizId = request.bizId;
this.orderId = request.orderId;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.sortOrder = request.sortOrder;
this.supplementStatus = request.supplementStatus;
this.trademarkName = request.trademarkName;
this.trademarkNumber = request.trademarkNumber;
this.userId = request.userId;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.putQueryParameter("ApplicantName", applicantName);
this.applicantName = applicantName;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.putQueryParameter("ApplicationStatus", applicationStatus);
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(String applicationType) {
this.putQueryParameter("ApplicationType", applicationType);
this.applicationType = applicationType;
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;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* SortOrder.
*/
public Builder sortOrder(String sortOrder) {
this.putQueryParameter("SortOrder", sortOrder);
this.sortOrder = sortOrder;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.putQueryParameter("SupplementStatus", supplementStatus);
this.supplementStatus = supplementStatus;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.putQueryParameter("TrademarkName", trademarkName);
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.putQueryParameter("TrademarkNumber", trademarkNumber);
this.trademarkNumber = trademarkNumber;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.putQueryParameter("UserId", userId);
this.userId = userId;
return this;
}
@Override
public ListAdminTrademarkApplicationsRequest build() {
return new ListAdminTrademarkApplicationsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAdminTrademarkApplicationsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAdminTrademarkApplicationsResponse} extends {@link TeaModel}
*
* <p>ListAdminTrademarkApplicationsResponse</p>
*/
public class ListAdminTrademarkApplicationsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListAdminTrademarkApplicationsResponseBody body;
private ListAdminTrademarkApplicationsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListAdminTrademarkApplicationsResponse 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 ListAdminTrademarkApplicationsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListAdminTrademarkApplicationsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListAdminTrademarkApplicationsResponseBody body);
@Override
ListAdminTrademarkApplicationsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListAdminTrademarkApplicationsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListAdminTrademarkApplicationsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListAdminTrademarkApplicationsResponse 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(ListAdminTrademarkApplicationsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListAdminTrademarkApplicationsResponse build() {
return new ListAdminTrademarkApplicationsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAdminTrademarkApplicationsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAdminTrademarkApplicationsResponseBody} extends {@link TeaModel}
*
* <p>ListAdminTrademarkApplicationsResponseBody</p>
*/
public class ListAdminTrademarkApplicationsResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Integer totalCount;
@NameInMap("TrademarkApplications")
private java.util.List < TrademarkApplications> trademarkApplications;
private ListAdminTrademarkApplicationsResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
this.trademarkApplications = builder.trademarkApplications;
}
public static Builder builder() {
return new Builder();
}
public static ListAdminTrademarkApplicationsResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
/**
* @return trademarkApplications
*/
public java.util.List < TrademarkApplications> getTrademarkApplications() {
return this.trademarkApplications;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Integer totalCount;
private java.util.List < TrademarkApplications> trademarkApplications;
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TrademarkApplications.
*/
public Builder trademarkApplications(java.util.List < TrademarkApplications> trademarkApplications) {
this.trademarkApplications = trademarkApplications;
return this;
}
public ListAdminTrademarkApplicationsResponseBody build() {
return new ListAdminTrademarkApplicationsResponseBody(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 ThirdClassification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
private ThirdClassification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
}
public static Builder builder() {
return new Builder();
}
public static ThirdClassification 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 ThirdClassification build() {
return new ThirdClassification(this);
}
}
}
public static class TrademarkApplications extends TeaModel {
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicationStatus")
private Integer applicationStatus;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BizId")
private String bizId;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("FirstClassification")
private FirstClassification firstClassification;
@NameInMap("Flags")
private java.util.List < String > flags;
@NameInMap("Note")
private String note;
@NameInMap("OrderId")
private String orderId;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("ServicePrice")
private Float servicePrice;
@NameInMap("SupplementId")
private Long supplementId;
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@NameInMap("SystemVersion")
private String systemVersion;
@NameInMap("ThirdClassification")
private java.util.List < ThirdClassification> thirdClassification;
@NameInMap("TotalPrice")
private Float totalPrice;
@NameInMap("TrademarkIcon")
private String trademarkIcon;
@NameInMap("TrademarkName")
private String trademarkName;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UpdateTime")
private Long updateTime;
@NameInMap("UserId")
private String userId;
private TrademarkApplications(Builder builder) {
this.applicantId = builder.applicantId;
this.applicantName = builder.applicantName;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.authorizationUrl = builder.authorizationUrl;
this.bizId = builder.bizId;
this.createTime = builder.createTime;
this.firstClassification = builder.firstClassification;
this.flags = builder.flags;
this.note = builder.note;
this.orderId = builder.orderId;
this.orderPrice = builder.orderPrice;
this.principalName = builder.principalName;
this.servicePrice = builder.servicePrice;
this.supplementId = builder.supplementId;
this.supplementStatus = builder.supplementStatus;
this.systemVersion = builder.systemVersion;
this.thirdClassification = builder.thirdClassification;
this.totalPrice = builder.totalPrice;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNumber = builder.trademarkNumber;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplications create() {
return builder().build();
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return firstClassification
*/
public FirstClassification getFirstClassification() {
return this.firstClassification;
}
/**
* @return flags
*/
public java.util.List < String > getFlags() {
return this.flags;
}
/**
* @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 servicePrice
*/
public Float getServicePrice() {
return this.servicePrice;
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
/**
* @return thirdClassification
*/
public java.util.List < ThirdClassification> getThirdClassification() {
return this.thirdClassification;
}
/**
* @return totalPrice
*/
public Float getTotalPrice() {
return this.totalPrice;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder {
private Long applicantId;
private String applicantName;
private Integer applicationStatus;
private Integer applicationType;
private String authorizationUrl;
private String bizId;
private Long createTime;
private FirstClassification firstClassification;
private java.util.List < String > flags;
private String note;
private String orderId;
private Float orderPrice;
private Integer principalName;
private Float servicePrice;
private Long supplementId;
private Integer supplementStatus;
private String systemVersion;
private java.util.List < ThirdClassification> thirdClassification;
private Float totalPrice;
private String trademarkIcon;
private String trademarkName;
private String trademarkNumber;
private Long updateTime;
private String userId;
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* FirstClassification.
*/
public Builder firstClassification(FirstClassification firstClassification) {
this.firstClassification = firstClassification;
return this;
}
/**
* Flags.
*/
public Builder flags(java.util.List < String > flags) {
this.flags = flags;
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;
}
/**
* ServicePrice.
*/
public Builder servicePrice(Float servicePrice) {
this.servicePrice = servicePrice;
return this;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.supplementId = supplementId;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.supplementStatus = supplementStatus;
return this;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.systemVersion = systemVersion;
return this;
}
/**
* ThirdClassification.
*/
public Builder thirdClassification(java.util.List < ThirdClassification> thirdClassification) {
this.thirdClassification = thirdClassification;
return this;
}
/**
* TotalPrice.
*/
public Builder totalPrice(Float totalPrice) {
this.totalPrice = totalPrice;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
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 TrademarkApplications build() {
return new TrademarkApplications(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListApplicantsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListApplicantsRequest} extends {@link RequestModel}
*
* <p>ListApplicantsRequest</p>
*/
public class ListApplicantsRequest extends Request {
@Query
@NameInMap("ApplicantName")
private String applicantName;
@Query
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@Query
@NameInMap("ApplicantType")
private Integer applicantType;
@Query
@NameInMap("ApplicantVersion")
private String applicantVersion;
@Query
@NameInMap("AuditStatus")
private Integer auditStatus;
@Query
@NameInMap("CardNumber")
private String cardNumber;
@Query
@NameInMap("PageNumber")
private Integer pageNumber;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("PrincipalName")
private Integer principalName;
@Query
@NameInMap("SystemVersion")
private String systemVersion;
private ListApplicantsRequest(Builder builder) {
super(builder);
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.applicantVersion = builder.applicantVersion;
this.auditStatus = builder.auditStatus;
this.cardNumber = builder.cardNumber;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.principalName = builder.principalName;
this.systemVersion = builder.systemVersion;
}
public static Builder builder() {
return new Builder();
}
public static ListApplicantsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return applicantVersion
*/
public String getApplicantVersion() {
return this.applicantVersion;
}
/**
* @return auditStatus
*/
public Integer getAuditStatus() {
return this.auditStatus;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
public static final class Builder extends Request.Builder<ListApplicantsRequest, Builder> {
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private String applicantVersion;
private Integer auditStatus;
private String cardNumber;
private Integer pageNumber;
private Integer pageSize;
private Integer principalName;
private String systemVersion;
private Builder() {
super();
}
private Builder(ListApplicantsRequest request) {
super(request);
this.applicantName = request.applicantName;
this.applicantRegion = request.applicantRegion;
this.applicantType = request.applicantType;
this.applicantVersion = request.applicantVersion;
this.auditStatus = request.auditStatus;
this.cardNumber = request.cardNumber;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.principalName = request.principalName;
this.systemVersion = request.systemVersion;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.putQueryParameter("ApplicantName", applicantName);
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.putQueryParameter("ApplicantRegion", applicantRegion);
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.putQueryParameter("ApplicantType", applicantType);
this.applicantType = applicantType;
return this;
}
/**
* ApplicantVersion.
*/
public Builder applicantVersion(String applicantVersion) {
this.putQueryParameter("ApplicantVersion", applicantVersion);
this.applicantVersion = applicantVersion;
return this;
}
/**
* AuditStatus.
*/
public Builder auditStatus(Integer auditStatus) {
this.putQueryParameter("AuditStatus", auditStatus);
this.auditStatus = auditStatus;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.putQueryParameter("CardNumber", cardNumber);
this.cardNumber = cardNumber;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
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;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.putQueryParameter("SystemVersion", systemVersion);
this.systemVersion = systemVersion;
return this;
}
@Override
public ListApplicantsRequest build() {
return new ListApplicantsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListApplicantsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListApplicantsResponse} extends {@link TeaModel}
*
* <p>ListApplicantsResponse</p>
*/
public class ListApplicantsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListApplicantsResponseBody body;
private ListApplicantsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListApplicantsResponse 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 ListApplicantsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListApplicantsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListApplicantsResponseBody body);
@Override
ListApplicantsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListApplicantsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListApplicantsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListApplicantsResponse 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(ListApplicantsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListApplicantsResponse build() {
return new ListApplicantsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListApplicantsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListApplicantsResponseBody} extends {@link TeaModel}
*
* <p>ListApplicantsResponseBody</p>
*/
public class ListApplicantsResponseBody extends TeaModel {
@NameInMap("Applicants")
private Applicants applicants;
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Integer totalCount;
private ListApplicantsResponseBody(Builder builder) {
this.applicants = builder.applicants;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListApplicantsResponseBody create() {
return builder().build();
}
/**
* @return applicants
*/
public Applicants getApplicants() {
return this.applicants;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Applicants applicants;
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Integer totalCount;
/**
* Applicants.
*/
public Builder applicants(Applicants applicants) {
this.applicants = applicants;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListApplicantsResponseBody build() {
return new ListApplicantsResponseBody(this);
}
}
public static class Applicant extends TeaModel {
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicantRegion")
private Integer applicantRegion;
@NameInMap("ApplicantType")
private Integer applicantType;
@NameInMap("ApplicantVersion")
private String applicantVersion;
@NameInMap("AuditStatus")
private Integer auditStatus;
@NameInMap("AuthorizationAuditStatus")
private Integer authorizationAuditStatus;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("CardNumber")
private String cardNumber;
@NameInMap("ContactName")
private String contactName;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("SystemVersion")
private String systemVersion;
@NameInMap("ValidDate")
private Long validDate;
private Applicant(Builder builder) {
this.applicantId = builder.applicantId;
this.applicantName = builder.applicantName;
this.applicantRegion = builder.applicantRegion;
this.applicantType = builder.applicantType;
this.applicantVersion = builder.applicantVersion;
this.auditStatus = builder.auditStatus;
this.authorizationAuditStatus = builder.authorizationAuditStatus;
this.authorizationUrl = builder.authorizationUrl;
this.cardNumber = builder.cardNumber;
this.contactName = builder.contactName;
this.principalName = builder.principalName;
this.systemVersion = builder.systemVersion;
this.validDate = builder.validDate;
}
public static Builder builder() {
return new Builder();
}
public static Applicant create() {
return builder().build();
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicantRegion
*/
public Integer getApplicantRegion() {
return this.applicantRegion;
}
/**
* @return applicantType
*/
public Integer getApplicantType() {
return this.applicantType;
}
/**
* @return applicantVersion
*/
public String getApplicantVersion() {
return this.applicantVersion;
}
/**
* @return auditStatus
*/
public Integer getAuditStatus() {
return this.auditStatus;
}
/**
* @return authorizationAuditStatus
*/
public Integer getAuthorizationAuditStatus() {
return this.authorizationAuditStatus;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return cardNumber
*/
public String getCardNumber() {
return this.cardNumber;
}
/**
* @return contactName
*/
public String getContactName() {
return this.contactName;
}
/**
* @return principalName
*/
public Integer getPrincipalName() {
return this.principalName;
}
/**
* @return systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
/**
* @return validDate
*/
public Long getValidDate() {
return this.validDate;
}
public static final class Builder {
private Long applicantId;
private String applicantName;
private Integer applicantRegion;
private Integer applicantType;
private String applicantVersion;
private Integer auditStatus;
private Integer authorizationAuditStatus;
private String authorizationUrl;
private String cardNumber;
private String contactName;
private Integer principalName;
private String systemVersion;
private Long validDate;
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicantRegion.
*/
public Builder applicantRegion(Integer applicantRegion) {
this.applicantRegion = applicantRegion;
return this;
}
/**
* ApplicantType.
*/
public Builder applicantType(Integer applicantType) {
this.applicantType = applicantType;
return this;
}
/**
* ApplicantVersion.
*/
public Builder applicantVersion(String applicantVersion) {
this.applicantVersion = applicantVersion;
return this;
}
/**
* AuditStatus.
*/
public Builder auditStatus(Integer auditStatus) {
this.auditStatus = auditStatus;
return this;
}
/**
* AuthorizationAuditStatus.
*/
public Builder authorizationAuditStatus(Integer authorizationAuditStatus) {
this.authorizationAuditStatus = authorizationAuditStatus;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* CardNumber.
*/
public Builder cardNumber(String cardNumber) {
this.cardNumber = cardNumber;
return this;
}
/**
* ContactName.
*/
public Builder contactName(String contactName) {
this.contactName = contactName;
return this;
}
/**
* PrincipalName.
*/
public Builder principalName(Integer principalName) {
this.principalName = principalName;
return this;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.systemVersion = systemVersion;
return this;
}
/**
* ValidDate.
*/
public Builder validDate(Long validDate) {
this.validDate = validDate;
return this;
}
public Applicant build() {
return new Applicant(this);
}
}
}
public static class Applicants extends TeaModel {
@NameInMap("Applicant")
private java.util.List < Applicant> applicant;
private Applicants(Builder builder) {
this.applicant = builder.applicant;
}
public static Builder builder() {
return new Builder();
}
public static Applicants create() {
return builder().build();
}
/**
* @return applicant
*/
public java.util.List < Applicant> getApplicant() {
return this.applicant;
}
public static final class Builder {
private java.util.List < Applicant> applicant;
/**
* Applicant.
*/
public Builder applicant(java.util.List < Applicant> applicant) {
this.applicant = applicant;
return this;
}
public Applicants build() {
return new Applicants(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAreasRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAreasRequest} extends {@link RequestModel}
*
* <p>ListAreasRequest</p>
*/
public class ListAreasRequest extends Request {
@Query
@NameInMap("BizType")
@Validation(required = true)
private String bizType;
@Query
@NameInMap("ParentCode")
private String parentCode;
private ListAreasRequest(Builder builder) {
super(builder);
this.bizType = builder.bizType;
this.parentCode = builder.parentCode;
}
public static Builder builder() {
return new Builder();
}
public static ListAreasRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
/**
* @return parentCode
*/
public String getParentCode() {
return this.parentCode;
}
public static final class Builder extends Request.Builder<ListAreasRequest, Builder> {
private String bizType;
private String parentCode;
private Builder() {
super();
}
private Builder(ListAreasRequest request) {
super(request);
this.bizType = request.bizType;
this.parentCode = request.parentCode;
}
/**
* BizType.
*/
public Builder bizType(String bizType) {
this.putQueryParameter("BizType", bizType);
this.bizType = bizType;
return this;
}
/**
* ParentCode.
*/
public Builder parentCode(String parentCode) {
this.putQueryParameter("ParentCode", parentCode);
this.parentCode = parentCode;
return this;
}
@Override
public ListAreasRequest build() {
return new ListAreasRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAreasResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAreasResponse} extends {@link TeaModel}
*
* <p>ListAreasResponse</p>
*/
public class ListAreasResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListAreasResponseBody body;
private ListAreasResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListAreasResponse 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 ListAreasResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListAreasResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListAreasResponseBody body);
@Override
ListAreasResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListAreasResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListAreasResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListAreasResponse 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(ListAreasResponseBody body) {
this.body = body;
return this;
}
@Override
public ListAreasResponse build() {
return new ListAreasResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListAreasResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAreasResponseBody} extends {@link TeaModel}
*
* <p>ListAreasResponseBody</p>
*/
public class ListAreasResponseBody extends TeaModel {
@NameInMap("Datas")
private java.util.List < Datas> datas;
@NameInMap("RequestId")
private String requestId;
private ListAreasResponseBody(Builder builder) {
this.datas = builder.datas;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListAreasResponseBody create() {
return builder().build();
}
/**
* @return datas
*/
public java.util.List < Datas> getDatas() {
return this.datas;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < Datas> datas;
private String requestId;
/**
* Datas.
*/
public Builder datas(java.util.List < Datas> datas) {
this.datas = datas;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListAreasResponseBody build() {
return new ListAreasResponseBody(this);
}
}
public static class SubArea extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Name")
private String name;
@NameInMap("ParentCode")
private String parentCode;
@NameInMap("SortNum")
private Integer sortNum;
private SubArea(Builder builder) {
this.code = builder.code;
this.name = builder.name;
this.parentCode = builder.parentCode;
this.sortNum = builder.sortNum;
}
public static Builder builder() {
return new Builder();
}
public static SubArea create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return parentCode
*/
public String getParentCode() {
return this.parentCode;
}
/**
* @return sortNum
*/
public Integer getSortNum() {
return this.sortNum;
}
public static final class Builder {
private String code;
private String name;
private String parentCode;
private Integer sortNum;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* ParentCode.
*/
public Builder parentCode(String parentCode) {
this.parentCode = parentCode;
return this;
}
/**
* SortNum.
*/
public Builder sortNum(Integer sortNum) {
this.sortNum = sortNum;
return this;
}
public SubArea build() {
return new SubArea(this);
}
}
}
public static class Datas extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Name")
private String name;
@NameInMap("ParentCode")
private String parentCode;
@NameInMap("SortNum")
private Integer sortNum;
@NameInMap("SubArea")
private java.util.List < SubArea> subArea;
private Datas(Builder builder) {
this.code = builder.code;
this.name = builder.name;
this.parentCode = builder.parentCode;
this.sortNum = builder.sortNum;
this.subArea = builder.subArea;
}
public static Builder builder() {
return new Builder();
}
public static Datas create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return parentCode
*/
public String getParentCode() {
return this.parentCode;
}
/**
* @return sortNum
*/
public Integer getSortNum() {
return this.sortNum;
}
/**
* @return subArea
*/
public java.util.List < SubArea> getSubArea() {
return this.subArea;
}
public static final class Builder {
private String code;
private String name;
private String parentCode;
private Integer sortNum;
private java.util.List < SubArea> subArea;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* ParentCode.
*/
public Builder parentCode(String parentCode) {
this.parentCode = parentCode;
return this;
}
/**
* SortNum.
*/
public Builder sortNum(Integer sortNum) {
this.sortNum = sortNum;
return this;
}
/**
* SubArea.
*/
public Builder subArea(java.util.List < SubArea> subArea) {
this.subArea = subArea;
return this;
}
public Datas build() {
return new Datas(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListClassificationConditionsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClassificationConditionsRequest} extends {@link RequestModel}
*
* <p>ListClassificationConditionsRequest</p>
*/
public class ListClassificationConditionsRequest extends Request {
@Query
@NameInMap("TagName")
private String tagName;
@Query
@NameInMap("Type")
private Long type;
private ListClassificationConditionsRequest(Builder builder) {
super(builder);
this.tagName = builder.tagName;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static ListClassificationConditionsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return tagName
*/
public String getTagName() {
return this.tagName;
}
/**
* @return type
*/
public Long getType() {
return this.type;
}
public static final class Builder extends Request.Builder<ListClassificationConditionsRequest, Builder> {
private String tagName;
private Long type;
private Builder() {
super();
}
private Builder(ListClassificationConditionsRequest request) {
super(request);
this.tagName = request.tagName;
this.type = request.type;
}
/**
* TagName.
*/
public Builder tagName(String tagName) {
this.putQueryParameter("TagName", tagName);
this.tagName = tagName;
return this;
}
/**
* Type.
*/
public Builder type(Long type) {
this.putQueryParameter("Type", type);
this.type = type;
return this;
}
@Override
public ListClassificationConditionsRequest build() {
return new ListClassificationConditionsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListClassificationConditionsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClassificationConditionsResponse} extends {@link TeaModel}
*
* <p>ListClassificationConditionsResponse</p>
*/
public class ListClassificationConditionsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListClassificationConditionsResponseBody body;
private ListClassificationConditionsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListClassificationConditionsResponse 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 ListClassificationConditionsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListClassificationConditionsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListClassificationConditionsResponseBody body);
@Override
ListClassificationConditionsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListClassificationConditionsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListClassificationConditionsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListClassificationConditionsResponse 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(ListClassificationConditionsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListClassificationConditionsResponse build() {
return new ListClassificationConditionsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListClassificationConditionsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClassificationConditionsResponseBody} extends {@link TeaModel}
*
* <p>ListClassificationConditionsResponseBody</p>
*/
public class ListClassificationConditionsResponseBody extends TeaModel {
@NameInMap("Data")
private java.util.List < Data> data;
@NameInMap("RequestId")
private String requestId;
private ListClassificationConditionsResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListClassificationConditionsResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List < Data> getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < Data> data;
private String requestId;
/**
* Data.
*/
public Builder data(java.util.List < Data> data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListClassificationConditionsResponseBody build() {
return new ListClassificationConditionsResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("ConditionContent")
private String conditionContent;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("Id")
private Long id;
@NameInMap("SessionId")
private String sessionId;
@NameInMap("TagName")
private String tagName;
@NameInMap("Type")
private Long type;
@NameInMap("Umid")
private String umid;
@NameInMap("UpdateTime")
private Long updateTime;
@NameInMap("UserId")
private Long userId;
private Data(Builder builder) {
this.conditionContent = builder.conditionContent;
this.createTime = builder.createTime;
this.id = builder.id;
this.sessionId = builder.sessionId;
this.tagName = builder.tagName;
this.type = builder.type;
this.umid = builder.umid;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return conditionContent
*/
public String getConditionContent() {
return this.conditionContent;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return sessionId
*/
public String getSessionId() {
return this.sessionId;
}
/**
* @return tagName
*/
public String getTagName() {
return this.tagName;
}
/**
* @return type
*/
public Long getType() {
return this.type;
}
/**
* @return umid
*/
public String getUmid() {
return this.umid;
}
/**
* @return updateTime
*/
public Long getUpdateTime() {
return this.updateTime;
}
/**
* @return userId
*/
public Long getUserId() {
return this.userId;
}
public static final class Builder {
private String conditionContent;
private Long createTime;
private Long id;
private String sessionId;
private String tagName;
private Long type;
private String umid;
private Long updateTime;
private Long userId;
/**
* ConditionContent.
*/
public Builder conditionContent(String conditionContent) {
this.conditionContent = conditionContent;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* SessionId.
*/
public Builder sessionId(String sessionId) {
this.sessionId = sessionId;
return this;
}
/**
* TagName.
*/
public Builder tagName(String tagName) {
this.tagName = tagName;
return this;
}
/**
* Type.
*/
public Builder type(Long type) {
this.type = type;
return this;
}
/**
* Umid.
*/
public Builder umid(String umid) {
this.umid = umid;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* UserId.
*/
public Builder userId(Long userId) {
this.userId = userId;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListClassificationsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClassificationsRequest} extends {@link RequestModel}
*
* <p>ListClassificationsRequest</p>
*/
public class ListClassificationsRequest extends Request {
@Query
@NameInMap("ParentCode")
private String parentCode;
private ListClassificationsRequest(Builder builder) {
super(builder);
this.parentCode = builder.parentCode;
}
public static Builder builder() {
return new Builder();
}
public static ListClassificationsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return parentCode
*/
public String getParentCode() {
return this.parentCode;
}
public static final class Builder extends Request.Builder<ListClassificationsRequest, Builder> {
private String parentCode;
private Builder() {
super();
}
private Builder(ListClassificationsRequest request) {
super(request);
this.parentCode = request.parentCode;
}
/**
* ParentCode.
*/
public Builder parentCode(String parentCode) {
this.putQueryParameter("ParentCode", parentCode);
this.parentCode = parentCode;
return this;
}
@Override
public ListClassificationsRequest build() {
return new ListClassificationsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListClassificationsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClassificationsResponse} extends {@link TeaModel}
*
* <p>ListClassificationsResponse</p>
*/
public class ListClassificationsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListClassificationsResponseBody body;
private ListClassificationsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListClassificationsResponse 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 ListClassificationsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListClassificationsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListClassificationsResponseBody body);
@Override
ListClassificationsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListClassificationsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListClassificationsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListClassificationsResponse 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(ListClassificationsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListClassificationsResponse build() {
return new ListClassificationsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListClassificationsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListClassificationsResponseBody} extends {@link TeaModel}
*
* <p>ListClassificationsResponseBody</p>
*/
public class ListClassificationsResponseBody extends TeaModel {
@NameInMap("Classifications")
private Classifications classifications;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Integer totalCount;
private ListClassificationsResponseBody(Builder builder) {
this.classifications = builder.classifications;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListClassificationsResponseBody create() {
return builder().build();
}
/**
* @return classifications
*/
public Classifications getClassifications() {
return this.classifications;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Classifications classifications;
private String requestId;
private Integer totalCount;
/**
* Classifications.
*/
public Builder classifications(Classifications classifications) {
this.classifications = classifications;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListClassificationsResponseBody build() {
return new ListClassificationsResponseBody(this);
}
}
public static class Classification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
@NameInMap("Id")
private Long id;
@NameInMap("Level")
private Integer level;
@NameInMap("OfficialCode")
private String officialCode;
@NameInMap("ParentCode")
private String parentCode;
private Classification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
this.id = builder.id;
this.level = builder.level;
this.officialCode = builder.officialCode;
this.parentCode = builder.parentCode;
}
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;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return level
*/
public Integer getLevel() {
return this.level;
}
/**
* @return officialCode
*/
public String getOfficialCode() {
return this.officialCode;
}
/**
* @return parentCode
*/
public String getParentCode() {
return this.parentCode;
}
public static final class Builder {
private String classificationCode;
private String classificationName;
private Long id;
private Integer level;
private String officialCode;
private String parentCode;
/**
* ClassificationCode.
*/
public Builder classificationCode(String classificationCode) {
this.classificationCode = classificationCode;
return this;
}
/**
* ClassificationName.
*/
public Builder classificationName(String classificationName) {
this.classificationName = classificationName;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* Level.
*/
public Builder level(Integer level) {
this.level = level;
return this;
}
/**
* OfficialCode.
*/
public Builder officialCode(String officialCode) {
this.officialCode = officialCode;
return this;
}
/**
* ParentCode.
*/
public Builder parentCode(String parentCode) {
this.parentCode = parentCode;
return this;
}
public Classification build() {
return new Classification(this);
}
}
}
public static class Classifications extends TeaModel {
@NameInMap("Classification")
private java.util.List < Classification> classification;
private Classifications(Builder builder) {
this.classification = builder.classification;
}
public static Builder builder() {
return new Builder();
}
public static Classifications create() {
return builder().build();
}
/**
* @return classification
*/
public java.util.List < Classification> getClassification() {
return this.classification;
}
public static final class Builder {
private java.util.List < Classification> classification;
/**
* Classification.
*/
public Builder classification(java.util.List < Classification> classification) {
this.classification = classification;
return this;
}
public Classifications build() {
return new Classifications(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkApplicationLogsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkApplicationLogsRequest} extends {@link RequestModel}
*
* <p>ListTrademarkApplicationLogsRequest</p>
*/
public class ListTrademarkApplicationLogsRequest extends Request {
@Query
@NameInMap("BizId")
@Validation(required = true)
private String bizId;
private ListTrademarkApplicationLogsRequest(Builder builder) {
super(builder);
this.bizId = builder.bizId;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkApplicationLogsRequest 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<ListTrademarkApplicationLogsRequest, Builder> {
private String bizId;
private Builder() {
super();
}
private Builder(ListTrademarkApplicationLogsRequest request) {
super(request);
this.bizId = request.bizId;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putQueryParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
@Override
public ListTrademarkApplicationLogsRequest build() {
return new ListTrademarkApplicationLogsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkApplicationLogsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkApplicationLogsResponse} extends {@link TeaModel}
*
* <p>ListTrademarkApplicationLogsResponse</p>
*/
public class ListTrademarkApplicationLogsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListTrademarkApplicationLogsResponseBody body;
private ListTrademarkApplicationLogsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListTrademarkApplicationLogsResponse 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 ListTrademarkApplicationLogsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListTrademarkApplicationLogsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListTrademarkApplicationLogsResponseBody body);
@Override
ListTrademarkApplicationLogsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListTrademarkApplicationLogsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListTrademarkApplicationLogsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListTrademarkApplicationLogsResponse 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(ListTrademarkApplicationLogsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListTrademarkApplicationLogsResponse build() {
return new ListTrademarkApplicationLogsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkApplicationLogsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkApplicationLogsResponseBody} extends {@link TeaModel}
*
* <p>ListTrademarkApplicationLogsResponseBody</p>
*/
public class ListTrademarkApplicationLogsResponseBody extends TeaModel {
@NameInMap("RequestId")
private String requestId;
@NameInMap("TrademarkApplicationLogs")
private TrademarkApplicationLogs trademarkApplicationLogs;
private ListTrademarkApplicationLogsResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.trademarkApplicationLogs = builder.trademarkApplicationLogs;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkApplicationLogsResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return trademarkApplicationLogs
*/
public TrademarkApplicationLogs getTrademarkApplicationLogs() {
return this.trademarkApplicationLogs;
}
public static final class Builder {
private String requestId;
private TrademarkApplicationLogs trademarkApplicationLogs;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TrademarkApplicationLogs.
*/
public Builder trademarkApplicationLogs(TrademarkApplicationLogs trademarkApplicationLogs) {
this.trademarkApplicationLogs = trademarkApplicationLogs;
return this;
}
public ListTrademarkApplicationLogsResponseBody build() {
return new ListTrademarkApplicationLogsResponseBody(this);
}
}
public static class TrademarkApplicationLog extends TeaModel {
@NameInMap("BizId")
private String bizId;
@NameInMap("BizStatus")
private Integer bizStatus;
@NameInMap("Note")
private String note;
@NameInMap("OperateTime")
private Long operateTime;
@NameInMap("OperateType")
private Integer operateType;
private TrademarkApplicationLog(Builder builder) {
this.bizId = builder.bizId;
this.bizStatus = builder.bizStatus;
this.note = builder.note;
this.operateTime = builder.operateTime;
this.operateType = builder.operateType;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplicationLog create() {
return builder().build();
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return bizStatus
*/
public Integer getBizStatus() {
return this.bizStatus;
}
/**
* @return note
*/
public String getNote() {
return this.note;
}
/**
* @return operateTime
*/
public Long getOperateTime() {
return this.operateTime;
}
/**
* @return operateType
*/
public Integer getOperateType() {
return this.operateType;
}
public static final class Builder {
private String bizId;
private Integer bizStatus;
private String note;
private Long operateTime;
private Integer operateType;
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* BizStatus.
*/
public Builder bizStatus(Integer bizStatus) {
this.bizStatus = bizStatus;
return this;
}
/**
* Note.
*/
public Builder note(String note) {
this.note = note;
return this;
}
/**
* OperateTime.
*/
public Builder operateTime(Long operateTime) {
this.operateTime = operateTime;
return this;
}
/**
* OperateType.
*/
public Builder operateType(Integer operateType) {
this.operateType = operateType;
return this;
}
public TrademarkApplicationLog build() {
return new TrademarkApplicationLog(this);
}
}
}
public static class TrademarkApplicationLogs extends TeaModel {
@NameInMap("TrademarkApplicationLog")
private java.util.List < TrademarkApplicationLog> trademarkApplicationLog;
private TrademarkApplicationLogs(Builder builder) {
this.trademarkApplicationLog = builder.trademarkApplicationLog;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplicationLogs create() {
return builder().build();
}
/**
* @return trademarkApplicationLog
*/
public java.util.List < TrademarkApplicationLog> getTrademarkApplicationLog() {
return this.trademarkApplicationLog;
}
public static final class Builder {
private java.util.List < TrademarkApplicationLog> trademarkApplicationLog;
/**
* TrademarkApplicationLog.
*/
public Builder trademarkApplicationLog(java.util.List < TrademarkApplicationLog> trademarkApplicationLog) {
this.trademarkApplicationLog = trademarkApplicationLog;
return this;
}
public TrademarkApplicationLogs build() {
return new TrademarkApplicationLogs(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkApplicationsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkApplicationsRequest} extends {@link RequestModel}
*
* <p>ListTrademarkApplicationsRequest</p>
*/
public class ListTrademarkApplicationsRequest extends Request {
@Query
@NameInMap("ApplicantName")
private String applicantName;
@Query
@NameInMap("ApplicationStatus")
private Integer applicationStatus;
@Query
@NameInMap("ApplicationType")
private String applicationType;
@Query
@NameInMap("BizId")
private String bizId;
@Query
@NameInMap("CreateTimeLeft")
private Long createTimeLeft;
@Query
@NameInMap("CreateTimeRight")
private Long createTimeRight;
@Query
@NameInMap("Flag")
@Validation(maximum = 100, minimum = 1)
private Integer flag;
@Query
@NameInMap("OrderId")
private String orderId;
@Query
@NameInMap("PageNumber")
private Integer pageNumber;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("ProductType")
@Validation(maximum = 100, minimum = 1)
private Integer productType;
@Query
@NameInMap("QueryVoucherOrderDoneFlag")
private Boolean queryVoucherOrderDoneFlag;
@Query
@NameInMap("QueryVoucherOrderFlag")
private Boolean queryVoucherOrderFlag;
@Query
@NameInMap("SortFiled")
private String sortFiled;
@Query
@NameInMap("SortOrder")
private String sortOrder;
@Query
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@Query
@NameInMap("TrademarkName")
private String trademarkName;
@Query
@NameInMap("TrademarkNumber")
private String trademarkNumber;
private ListTrademarkApplicationsRequest(Builder builder) {
super(builder);
this.applicantName = builder.applicantName;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.bizId = builder.bizId;
this.createTimeLeft = builder.createTimeLeft;
this.createTimeRight = builder.createTimeRight;
this.flag = builder.flag;
this.orderId = builder.orderId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.productType = builder.productType;
this.queryVoucherOrderDoneFlag = builder.queryVoucherOrderDoneFlag;
this.queryVoucherOrderFlag = builder.queryVoucherOrderFlag;
this.sortFiled = builder.sortFiled;
this.sortOrder = builder.sortOrder;
this.supplementStatus = builder.supplementStatus;
this.trademarkName = builder.trademarkName;
this.trademarkNumber = builder.trademarkNumber;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkApplicationsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public String getApplicationType() {
return this.applicationType;
}
/**
* @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 flag
*/
public Integer getFlag() {
return this.flag;
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return productType
*/
public Integer getProductType() {
return this.productType;
}
/**
* @return queryVoucherOrderDoneFlag
*/
public Boolean getQueryVoucherOrderDoneFlag() {
return this.queryVoucherOrderDoneFlag;
}
/**
* @return queryVoucherOrderFlag
*/
public Boolean getQueryVoucherOrderFlag() {
return this.queryVoucherOrderFlag;
}
/**
* @return sortFiled
*/
public String getSortFiled() {
return this.sortFiled;
}
/**
* @return sortOrder
*/
public String getSortOrder() {
return this.sortOrder;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
public static final class Builder extends Request.Builder<ListTrademarkApplicationsRequest, Builder> {
private String applicantName;
private Integer applicationStatus;
private String applicationType;
private String bizId;
private Long createTimeLeft;
private Long createTimeRight;
private Integer flag;
private String orderId;
private Integer pageNumber;
private Integer pageSize;
private Integer productType;
private Boolean queryVoucherOrderDoneFlag;
private Boolean queryVoucherOrderFlag;
private String sortFiled;
private String sortOrder;
private Integer supplementStatus;
private String trademarkName;
private String trademarkNumber;
private Builder() {
super();
}
private Builder(ListTrademarkApplicationsRequest request) {
super(request);
this.applicantName = request.applicantName;
this.applicationStatus = request.applicationStatus;
this.applicationType = request.applicationType;
this.bizId = request.bizId;
this.createTimeLeft = request.createTimeLeft;
this.createTimeRight = request.createTimeRight;
this.flag = request.flag;
this.orderId = request.orderId;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.productType = request.productType;
this.queryVoucherOrderDoneFlag = request.queryVoucherOrderDoneFlag;
this.queryVoucherOrderFlag = request.queryVoucherOrderFlag;
this.sortFiled = request.sortFiled;
this.sortOrder = request.sortOrder;
this.supplementStatus = request.supplementStatus;
this.trademarkName = request.trademarkName;
this.trademarkNumber = request.trademarkNumber;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.putQueryParameter("ApplicantName", applicantName);
this.applicantName = applicantName;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.putQueryParameter("ApplicationStatus", applicationStatus);
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(String applicationType) {
this.putQueryParameter("ApplicationType", applicationType);
this.applicationType = applicationType;
return this;
}
/**
* 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;
}
/**
* Flag.
*/
public Builder flag(Integer flag) {
this.putQueryParameter("Flag", flag);
this.flag = flag;
return this;
}
/**
* OrderId.
*/
public Builder orderId(String orderId) {
this.putQueryParameter("OrderId", orderId);
this.orderId = orderId;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* ProductType.
*/
public Builder productType(Integer productType) {
this.putQueryParameter("ProductType", productType);
this.productType = productType;
return this;
}
/**
* QueryVoucherOrderDoneFlag.
*/
public Builder queryVoucherOrderDoneFlag(Boolean queryVoucherOrderDoneFlag) {
this.putQueryParameter("QueryVoucherOrderDoneFlag", queryVoucherOrderDoneFlag);
this.queryVoucherOrderDoneFlag = queryVoucherOrderDoneFlag;
return this;
}
/**
* QueryVoucherOrderFlag.
*/
public Builder queryVoucherOrderFlag(Boolean queryVoucherOrderFlag) {
this.putQueryParameter("QueryVoucherOrderFlag", queryVoucherOrderFlag);
this.queryVoucherOrderFlag = queryVoucherOrderFlag;
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;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.putQueryParameter("SupplementStatus", supplementStatus);
this.supplementStatus = supplementStatus;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.putQueryParameter("TrademarkName", trademarkName);
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.putQueryParameter("TrademarkNumber", trademarkNumber);
this.trademarkNumber = trademarkNumber;
return this;
}
@Override
public ListTrademarkApplicationsRequest build() {
return new ListTrademarkApplicationsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkApplicationsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkApplicationsResponse} extends {@link TeaModel}
*
* <p>ListTrademarkApplicationsResponse</p>
*/
public class ListTrademarkApplicationsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListTrademarkApplicationsResponseBody body;
private ListTrademarkApplicationsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListTrademarkApplicationsResponse 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 ListTrademarkApplicationsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListTrademarkApplicationsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListTrademarkApplicationsResponseBody body);
@Override
ListTrademarkApplicationsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListTrademarkApplicationsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListTrademarkApplicationsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListTrademarkApplicationsResponse 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(ListTrademarkApplicationsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListTrademarkApplicationsResponse build() {
return new ListTrademarkApplicationsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkApplicationsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkApplicationsResponseBody} extends {@link TeaModel}
*
* <p>ListTrademarkApplicationsResponseBody</p>
*/
public class ListTrademarkApplicationsResponseBody extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Integer totalCount;
@NameInMap("TrademarkApplications")
private TrademarkApplications trademarkApplications;
private ListTrademarkApplicationsResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
this.trademarkApplications = builder.trademarkApplications;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkApplicationsResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
/**
* @return trademarkApplications
*/
public TrademarkApplications getTrademarkApplications() {
return this.trademarkApplications;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private Integer totalCount;
private TrademarkApplications trademarkApplications;
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TrademarkApplications.
*/
public Builder trademarkApplications(TrademarkApplications trademarkApplications) {
this.trademarkApplications = trademarkApplications;
return this;
}
public ListTrademarkApplicationsResponseBody build() {
return new ListTrademarkApplicationsResponseBody(this);
}
}
public static class FirstClassification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
private FirstClassification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
}
public static Builder builder() {
return new Builder();
}
public static FirstClassification create() {
return builder().build();
}
/**
* @return classificationCode
*/
public String getClassificationCode() {
return this.classificationCode;
}
/**
* @return classificationName
*/
public String getClassificationName() {
return this.classificationName;
}
public static final class Builder {
private String classificationCode;
private String classificationName;
/**
* ClassificationCode.
*/
public Builder classificationCode(String classificationCode) {
this.classificationCode = classificationCode;
return this;
}
/**
* ClassificationName.
*/
public Builder classificationName(String classificationName) {
this.classificationName = classificationName;
return this;
}
public FirstClassification build() {
return new FirstClassification(this);
}
}
}
public static class Flags extends TeaModel {
@NameInMap("Flags")
private java.util.List < String > flags;
private Flags(Builder builder) {
this.flags = builder.flags;
}
public static Builder builder() {
return new Builder();
}
public static Flags create() {
return builder().build();
}
/**
* @return flags
*/
public java.util.List < String > getFlags() {
return this.flags;
}
public static final class Builder {
private java.util.List < String > flags;
/**
* Flags.
*/
public Builder flags(java.util.List < String > flags) {
this.flags = flags;
return this;
}
public Flags build() {
return new Flags(this);
}
}
}
public static class ThirdClassification extends TeaModel {
@NameInMap("ClassificationCode")
private String classificationCode;
@NameInMap("ClassificationName")
private String classificationName;
private ThirdClassification(Builder builder) {
this.classificationCode = builder.classificationCode;
this.classificationName = builder.classificationName;
}
public static Builder builder() {
return new Builder();
}
public static ThirdClassification 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 ThirdClassification build() {
return new ThirdClassification(this);
}
}
}
public static class TrademarkApplicationThirdClassification extends TeaModel {
@NameInMap("ThirdClassification")
private java.util.List < ThirdClassification> thirdClassification;
private TrademarkApplicationThirdClassification(Builder builder) {
this.thirdClassification = builder.thirdClassification;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplicationThirdClassification create() {
return builder().build();
}
/**
* @return thirdClassification
*/
public java.util.List < ThirdClassification> getThirdClassification() {
return this.thirdClassification;
}
public static final class Builder {
private java.util.List < ThirdClassification> thirdClassification;
/**
* ThirdClassification.
*/
public Builder thirdClassification(java.util.List < ThirdClassification> thirdClassification) {
this.thirdClassification = thirdClassification;
return this;
}
public TrademarkApplicationThirdClassification build() {
return new TrademarkApplicationThirdClassification(this);
}
}
}
public static class TrademarkApplication extends TeaModel {
@NameInMap("AgreementId")
private String agreementId;
@NameInMap("ApplicantId")
private Long applicantId;
@NameInMap("ApplicantName")
private String applicantName;
@NameInMap("ApplicationStatus")
private Integer applicationStatus;
@NameInMap("ApplicationType")
private Integer applicationType;
@NameInMap("AuthorizationUrl")
private String authorizationUrl;
@NameInMap("BizId")
private String bizId;
@NameInMap("CreateTime")
private Long createTime;
@NameInMap("FirstClassification")
private FirstClassification firstClassification;
@NameInMap("Flags")
private Flags flags;
@NameInMap("Note")
private String note;
@NameInMap("OrderId")
private String orderId;
@NameInMap("OrderPrice")
private Float orderPrice;
@NameInMap("PrincipalName")
private Integer principalName;
@NameInMap("ServicePrice")
private Float servicePrice;
@NameInMap("SupplementId")
private Long supplementId;
@NameInMap("SupplementStatus")
private Integer supplementStatus;
@NameInMap("SystemVersion")
private String systemVersion;
@NameInMap("ThirdClassification")
private TrademarkApplicationThirdClassification thirdClassification;
@NameInMap("TotalPrice")
private Float totalPrice;
@NameInMap("TrademarkIcon")
private String trademarkIcon;
@NameInMap("TrademarkName")
private String trademarkName;
@NameInMap("TrademarkNumber")
private String trademarkNumber;
@NameInMap("UpdateTime")
private Long updateTime;
@NameInMap("UserId")
private String userId;
private TrademarkApplication(Builder builder) {
this.agreementId = builder.agreementId;
this.applicantId = builder.applicantId;
this.applicantName = builder.applicantName;
this.applicationStatus = builder.applicationStatus;
this.applicationType = builder.applicationType;
this.authorizationUrl = builder.authorizationUrl;
this.bizId = builder.bizId;
this.createTime = builder.createTime;
this.firstClassification = builder.firstClassification;
this.flags = builder.flags;
this.note = builder.note;
this.orderId = builder.orderId;
this.orderPrice = builder.orderPrice;
this.principalName = builder.principalName;
this.servicePrice = builder.servicePrice;
this.supplementId = builder.supplementId;
this.supplementStatus = builder.supplementStatus;
this.systemVersion = builder.systemVersion;
this.thirdClassification = builder.thirdClassification;
this.totalPrice = builder.totalPrice;
this.trademarkIcon = builder.trademarkIcon;
this.trademarkName = builder.trademarkName;
this.trademarkNumber = builder.trademarkNumber;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplication create() {
return builder().build();
}
/**
* @return agreementId
*/
public String getAgreementId() {
return this.agreementId;
}
/**
* @return applicantId
*/
public Long getApplicantId() {
return this.applicantId;
}
/**
* @return applicantName
*/
public String getApplicantName() {
return this.applicantName;
}
/**
* @return applicationStatus
*/
public Integer getApplicationStatus() {
return this.applicationStatus;
}
/**
* @return applicationType
*/
public Integer getApplicationType() {
return this.applicationType;
}
/**
* @return authorizationUrl
*/
public String getAuthorizationUrl() {
return this.authorizationUrl;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return createTime
*/
public Long getCreateTime() {
return this.createTime;
}
/**
* @return firstClassification
*/
public FirstClassification getFirstClassification() {
return this.firstClassification;
}
/**
* @return flags
*/
public Flags getFlags() {
return this.flags;
}
/**
* @return 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 servicePrice
*/
public Float getServicePrice() {
return this.servicePrice;
}
/**
* @return supplementId
*/
public Long getSupplementId() {
return this.supplementId;
}
/**
* @return supplementStatus
*/
public Integer getSupplementStatus() {
return this.supplementStatus;
}
/**
* @return systemVersion
*/
public String getSystemVersion() {
return this.systemVersion;
}
/**
* @return thirdClassification
*/
public TrademarkApplicationThirdClassification getThirdClassification() {
return this.thirdClassification;
}
/**
* @return totalPrice
*/
public Float getTotalPrice() {
return this.totalPrice;
}
/**
* @return trademarkIcon
*/
public String getTrademarkIcon() {
return this.trademarkIcon;
}
/**
* @return trademarkName
*/
public String getTrademarkName() {
return this.trademarkName;
}
/**
* @return trademarkNumber
*/
public String getTrademarkNumber() {
return this.trademarkNumber;
}
/**
* @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 Long applicantId;
private String applicantName;
private Integer applicationStatus;
private Integer applicationType;
private String authorizationUrl;
private String bizId;
private Long createTime;
private FirstClassification firstClassification;
private Flags flags;
private String note;
private String orderId;
private Float orderPrice;
private Integer principalName;
private Float servicePrice;
private Long supplementId;
private Integer supplementStatus;
private String systemVersion;
private TrademarkApplicationThirdClassification thirdClassification;
private Float totalPrice;
private String trademarkIcon;
private String trademarkName;
private String trademarkNumber;
private Long updateTime;
private String userId;
/**
* AgreementId.
*/
public Builder agreementId(String agreementId) {
this.agreementId = agreementId;
return this;
}
/**
* ApplicantId.
*/
public Builder applicantId(Long applicantId) {
this.applicantId = applicantId;
return this;
}
/**
* ApplicantName.
*/
public Builder applicantName(String applicantName) {
this.applicantName = applicantName;
return this;
}
/**
* ApplicationStatus.
*/
public Builder applicationStatus(Integer applicationStatus) {
this.applicationStatus = applicationStatus;
return this;
}
/**
* ApplicationType.
*/
public Builder applicationType(Integer applicationType) {
this.applicationType = applicationType;
return this;
}
/**
* AuthorizationUrl.
*/
public Builder authorizationUrl(String authorizationUrl) {
this.authorizationUrl = authorizationUrl;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* CreateTime.
*/
public Builder createTime(Long createTime) {
this.createTime = createTime;
return this;
}
/**
* FirstClassification.
*/
public Builder firstClassification(FirstClassification firstClassification) {
this.firstClassification = firstClassification;
return this;
}
/**
* Flags.
*/
public Builder flags(Flags flags) {
this.flags = flags;
return this;
}
/**
* 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;
}
/**
* ServicePrice.
*/
public Builder servicePrice(Float servicePrice) {
this.servicePrice = servicePrice;
return this;
}
/**
* SupplementId.
*/
public Builder supplementId(Long supplementId) {
this.supplementId = supplementId;
return this;
}
/**
* SupplementStatus.
*/
public Builder supplementStatus(Integer supplementStatus) {
this.supplementStatus = supplementStatus;
return this;
}
/**
* SystemVersion.
*/
public Builder systemVersion(String systemVersion) {
this.systemVersion = systemVersion;
return this;
}
/**
* ThirdClassification.
*/
public Builder thirdClassification(TrademarkApplicationThirdClassification thirdClassification) {
this.thirdClassification = thirdClassification;
return this;
}
/**
* TotalPrice.
*/
public Builder totalPrice(Float totalPrice) {
this.totalPrice = totalPrice;
return this;
}
/**
* TrademarkIcon.
*/
public Builder trademarkIcon(String trademarkIcon) {
this.trademarkIcon = trademarkIcon;
return this;
}
/**
* TrademarkName.
*/
public Builder trademarkName(String trademarkName) {
this.trademarkName = trademarkName;
return this;
}
/**
* TrademarkNumber.
*/
public Builder trademarkNumber(String trademarkNumber) {
this.trademarkNumber = trademarkNumber;
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 TrademarkApplication build() {
return new TrademarkApplication(this);
}
}
}
public static class TrademarkApplications extends TeaModel {
@NameInMap("TrademarkApplication")
private java.util.List < TrademarkApplication> trademarkApplication;
private TrademarkApplications(Builder builder) {
this.trademarkApplication = builder.trademarkApplication;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkApplications create() {
return builder().build();
}
/**
* @return trademarkApplication
*/
public java.util.List < TrademarkApplication> getTrademarkApplication() {
return this.trademarkApplication;
}
public static final class Builder {
private java.util.List < TrademarkApplication> trademarkApplication;
/**
* TrademarkApplication.
*/
public Builder trademarkApplication(java.util.List < TrademarkApplication> trademarkApplication) {
this.trademarkApplication = trademarkApplication;
return this;
}
public TrademarkApplications build() {
return new TrademarkApplications(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkSearchForInnerRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkSearchForInnerRequest} extends {@link RequestModel}
*
* <p>ListTrademarkSearchForInnerRequest</p>
*/
public class ListTrademarkSearchForInnerRequest extends Request {
@Query
@NameInMap("ApplyBeginTime")
private String applyBeginTime;
@Query
@NameInMap("ApplyEndTime")
private String applyEndTime;
@Query
@NameInMap("Classification")
private String classification;
@Query
@NameInMap("IfPrecision")
private Boolean ifPrecision;
@Query
@NameInMap("Keyword")
private String keyword;
@Query
@NameInMap("PageNumber")
private Integer pageNumber;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("Product")
private String product;
@Query
@NameInMap("SearchPreference")
private String searchPreference;
@Query
@NameInMap("SearchType")
private String searchType;
@Query
@NameInMap("Status")
private String status;
@Query
@NameInMap("Umid")
private String umid;
@Query
@NameInMap("UserId")
private String userId;
private ListTrademarkSearchForInnerRequest(Builder builder) {
super(builder);
this.applyBeginTime = builder.applyBeginTime;
this.applyEndTime = builder.applyEndTime;
this.classification = builder.classification;
this.ifPrecision = builder.ifPrecision;
this.keyword = builder.keyword;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.product = builder.product;
this.searchPreference = builder.searchPreference;
this.searchType = builder.searchType;
this.status = builder.status;
this.umid = builder.umid;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkSearchForInnerRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return applyBeginTime
*/
public String getApplyBeginTime() {
return this.applyBeginTime;
}
/**
* @return applyEndTime
*/
public String getApplyEndTime() {
return this.applyEndTime;
}
/**
* @return classification
*/
public String getClassification() {
return this.classification;
}
/**
* @return ifPrecision
*/
public Boolean getIfPrecision() {
return this.ifPrecision;
}
/**
* @return keyword
*/
public String getKeyword() {
return this.keyword;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
/**
* @return searchPreference
*/
public String getSearchPreference() {
return this.searchPreference;
}
/**
* @return searchType
*/
public String getSearchType() {
return this.searchType;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return umid
*/
public String getUmid() {
return this.umid;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder extends Request.Builder<ListTrademarkSearchForInnerRequest, Builder> {
private String applyBeginTime;
private String applyEndTime;
private String classification;
private Boolean ifPrecision;
private String keyword;
private Integer pageNumber;
private Integer pageSize;
private String product;
private String searchPreference;
private String searchType;
private String status;
private String umid;
private String userId;
private Builder() {
super();
}
private Builder(ListTrademarkSearchForInnerRequest request) {
super(request);
this.applyBeginTime = request.applyBeginTime;
this.applyEndTime = request.applyEndTime;
this.classification = request.classification;
this.ifPrecision = request.ifPrecision;
this.keyword = request.keyword;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.product = request.product;
this.searchPreference = request.searchPreference;
this.searchType = request.searchType;
this.status = request.status;
this.umid = request.umid;
this.userId = request.userId;
}
/**
* ApplyBeginTime.
*/
public Builder applyBeginTime(String applyBeginTime) {
this.putQueryParameter("ApplyBeginTime", applyBeginTime);
this.applyBeginTime = applyBeginTime;
return this;
}
/**
* ApplyEndTime.
*/
public Builder applyEndTime(String applyEndTime) {
this.putQueryParameter("ApplyEndTime", applyEndTime);
this.applyEndTime = applyEndTime;
return this;
}
/**
* Classification.
*/
public Builder classification(String classification) {
this.putQueryParameter("Classification", classification);
this.classification = classification;
return this;
}
/**
* IfPrecision.
*/
public Builder ifPrecision(Boolean ifPrecision) {
this.putQueryParameter("IfPrecision", ifPrecision);
this.ifPrecision = ifPrecision;
return this;
}
/**
* Keyword.
*/
public Builder keyword(String keyword) {
this.putQueryParameter("Keyword", keyword);
this.keyword = keyword;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.putQueryParameter("Product", product);
this.product = product;
return this;
}
/**
* SearchPreference.
*/
public Builder searchPreference(String searchPreference) {
this.putQueryParameter("SearchPreference", searchPreference);
this.searchPreference = searchPreference;
return this;
}
/**
* SearchType.
*/
public Builder searchType(String searchType) {
this.putQueryParameter("SearchType", searchType);
this.searchType = searchType;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
/**
* Umid.
*/
public Builder umid(String umid) {
this.putQueryParameter("Umid", umid);
this.umid = umid;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.putQueryParameter("UserId", userId);
this.userId = userId;
return this;
}
@Override
public ListTrademarkSearchForInnerRequest build() {
return new ListTrademarkSearchForInnerRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkSearchForInnerResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkSearchForInnerResponse} extends {@link TeaModel}
*
* <p>ListTrademarkSearchForInnerResponse</p>
*/
public class ListTrademarkSearchForInnerResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListTrademarkSearchForInnerResponseBody body;
private ListTrademarkSearchForInnerResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListTrademarkSearchForInnerResponse 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 ListTrademarkSearchForInnerResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListTrademarkSearchForInnerResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListTrademarkSearchForInnerResponseBody body);
@Override
ListTrademarkSearchForInnerResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListTrademarkSearchForInnerResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListTrademarkSearchForInnerResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListTrademarkSearchForInnerResponse 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(ListTrademarkSearchForInnerResponseBody body) {
this.body = body;
return this;
}
@Override
public ListTrademarkSearchForInnerResponse build() {
return new ListTrademarkSearchForInnerResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/ListTrademarkSearchForInnerResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListTrademarkSearchForInnerResponseBody} extends {@link TeaModel}
*
* <p>ListTrademarkSearchForInnerResponseBody</p>
*/
public class ListTrademarkSearchForInnerResponseBody extends TeaModel {
@NameInMap("PageNumber")
private String pageNumber;
@NameInMap("PageSize")
private String pageSize;
@NameInMap("Products")
private java.util.List < String > products;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private String totalCount;
@NameInMap("TrademarkSearchContents")
private java.util.List < TrademarkSearchContents> trademarkSearchContents;
private ListTrademarkSearchForInnerResponseBody(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.products = builder.products;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
this.trademarkSearchContents = builder.trademarkSearchContents;
}
public static Builder builder() {
return new Builder();
}
public static ListTrademarkSearchForInnerResponseBody create() {
return builder().build();
}
/**
* @return pageNumber
*/
public String getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return products
*/
public java.util.List < String > getProducts() {
return this.products;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public String getTotalCount() {
return this.totalCount;
}
/**
* @return trademarkSearchContents
*/
public java.util.List < TrademarkSearchContents> getTrademarkSearchContents() {
return this.trademarkSearchContents;
}
public static final class Builder {
private String pageNumber;
private String pageSize;
private java.util.List < String > products;
private String requestId;
private String totalCount;
private java.util.List < TrademarkSearchContents> trademarkSearchContents;
/**
* PageNumber.
*/
public Builder pageNumber(String pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(String pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Products.
*/
public Builder products(java.util.List < String > products) {
this.products = products;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(String totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TrademarkSearchContents.
*/
public Builder trademarkSearchContents(java.util.List < TrademarkSearchContents> trademarkSearchContents) {
this.trademarkSearchContents = trademarkSearchContents;
return this;
}
public ListTrademarkSearchForInnerResponseBody build() {
return new ListTrademarkSearchForInnerResponseBody(this);
}
}
public static class TrademarkSearchContents extends TeaModel {
@NameInMap("ApplyDate")
private String applyDate;
@NameInMap("Classification")
private String classification;
@NameInMap("ExclusiveDateLimit")
private String exclusiveDateLimit;
@NameInMap("Id")
private Long id;
@NameInMap("Image")
private String image;
@NameInMap("LastProcedureStatus")
private String lastProcedureStatus;
@NameInMap("Name")
private String name;
@NameInMap("NameCharSection")
private String nameCharSection;
@NameInMap("NameOrigin")
private String nameOrigin;
@NameInMap("NameSimplifiedChinese")
private String nameSimplifiedChinese;
@NameInMap("NameSort")
private String nameSort;
@NameInMap("OnSale")
private String onSale;
@NameInMap("OwnerAddress")
private String ownerAddress;
@NameInMap("OwnerEnAddress")
private String ownerEnAddress;
@NameInMap("OwnerEnName")
private String ownerEnName;
@NameInMap("OwnerName")
private String ownerName;
@NameInMap("PreAnnDate")
private String preAnnDate;
@NameInMap("PreAnnNum")
private String preAnnNum;
@NameInMap("Product")
private String product;
@NameInMap("ProductDel")
private java.util.List < String > productDel;
@NameInMap("ProductDescription")
private String productDescription;
@NameInMap("RegAnnNum")
private String regAnnNum;
@NameInMap("RegistrationNumber")
private String registrationNumber;
@NameInMap("Share")
private String share;
@NameInMap("SimilarGroupDel")
private java.util.List < String > similarGroupDel;
@NameInMap("Uid")
private String uid;
@NameInMap("WellKnow")
private String wellKnow;
private TrademarkSearchContents(Builder builder) {
this.applyDate = builder.applyDate;
this.classification = builder.classification;
this.exclusiveDateLimit = builder.exclusiveDateLimit;
this.id = builder.id;
this.image = builder.image;
this.lastProcedureStatus = builder.lastProcedureStatus;
this.name = builder.name;
this.nameCharSection = builder.nameCharSection;
this.nameOrigin = builder.nameOrigin;
this.nameSimplifiedChinese = builder.nameSimplifiedChinese;
this.nameSort = builder.nameSort;
this.onSale = builder.onSale;
this.ownerAddress = builder.ownerAddress;
this.ownerEnAddress = builder.ownerEnAddress;
this.ownerEnName = builder.ownerEnName;
this.ownerName = builder.ownerName;
this.preAnnDate = builder.preAnnDate;
this.preAnnNum = builder.preAnnNum;
this.product = builder.product;
this.productDel = builder.productDel;
this.productDescription = builder.productDescription;
this.regAnnNum = builder.regAnnNum;
this.registrationNumber = builder.registrationNumber;
this.share = builder.share;
this.similarGroupDel = builder.similarGroupDel;
this.uid = builder.uid;
this.wellKnow = builder.wellKnow;
}
public static Builder builder() {
return new Builder();
}
public static TrademarkSearchContents create() {
return builder().build();
}
/**
* @return applyDate
*/
public String getApplyDate() {
return this.applyDate;
}
/**
* @return classification
*/
public String getClassification() {
return this.classification;
}
/**
* @return exclusiveDateLimit
*/
public String getExclusiveDateLimit() {
return this.exclusiveDateLimit;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return image
*/
public String getImage() {
return this.image;
}
/**
* @return lastProcedureStatus
*/
public String getLastProcedureStatus() {
return this.lastProcedureStatus;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return nameCharSection
*/
public String getNameCharSection() {
return this.nameCharSection;
}
/**
* @return nameOrigin
*/
public String getNameOrigin() {
return this.nameOrigin;
}
/**
* @return nameSimplifiedChinese
*/
public String getNameSimplifiedChinese() {
return this.nameSimplifiedChinese;
}
/**
* @return nameSort
*/
public String getNameSort() {
return this.nameSort;
}
/**
* @return onSale
*/
public String getOnSale() {
return this.onSale;
}
/**
* @return ownerAddress
*/
public String getOwnerAddress() {
return this.ownerAddress;
}
/**
* @return ownerEnAddress
*/
public String getOwnerEnAddress() {
return this.ownerEnAddress;
}
/**
* @return ownerEnName
*/
public String getOwnerEnName() {
return this.ownerEnName;
}
/**
* @return ownerName
*/
public String getOwnerName() {
return this.ownerName;
}
/**
* @return preAnnDate
*/
public String getPreAnnDate() {
return this.preAnnDate;
}
/**
* @return preAnnNum
*/
public String getPreAnnNum() {
return this.preAnnNum;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
/**
* @return productDel
*/
public java.util.List < String > getProductDel() {
return this.productDel;
}
/**
* @return productDescription
*/
public String getProductDescription() {
return this.productDescription;
}
/**
* @return regAnnNum
*/
public String getRegAnnNum() {
return this.regAnnNum;
}
/**
* @return registrationNumber
*/
public String getRegistrationNumber() {
return this.registrationNumber;
}
/**
* @return share
*/
public String getShare() {
return this.share;
}
/**
* @return similarGroupDel
*/
public java.util.List < String > getSimilarGroupDel() {
return this.similarGroupDel;
}
/**
* @return uid
*/
public String getUid() {
return this.uid;
}
/**
* @return wellKnow
*/
public String getWellKnow() {
return this.wellKnow;
}
public static final class Builder {
private String applyDate;
private String classification;
private String exclusiveDateLimit;
private Long id;
private String image;
private String lastProcedureStatus;
private String name;
private String nameCharSection;
private String nameOrigin;
private String nameSimplifiedChinese;
private String nameSort;
private String onSale;
private String ownerAddress;
private String ownerEnAddress;
private String ownerEnName;
private String ownerName;
private String preAnnDate;
private String preAnnNum;
private String product;
private java.util.List < String > productDel;
private String productDescription;
private String regAnnNum;
private String registrationNumber;
private String share;
private java.util.List < String > similarGroupDel;
private String uid;
private String wellKnow;
/**
* ApplyDate.
*/
public Builder applyDate(String applyDate) {
this.applyDate = applyDate;
return this;
}
/**
* Classification.
*/
public Builder classification(String classification) {
this.classification = classification;
return this;
}
/**
* ExclusiveDateLimit.
*/
public Builder exclusiveDateLimit(String exclusiveDateLimit) {
this.exclusiveDateLimit = exclusiveDateLimit;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* Image.
*/
public Builder image(String image) {
this.image = image;
return this;
}
/**
* LastProcedureStatus.
*/
public Builder lastProcedureStatus(String lastProcedureStatus) {
this.lastProcedureStatus = lastProcedureStatus;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* NameCharSection.
*/
public Builder nameCharSection(String nameCharSection) {
this.nameCharSection = nameCharSection;
return this;
}
/**
* NameOrigin.
*/
public Builder nameOrigin(String nameOrigin) {
this.nameOrigin = nameOrigin;
return this;
}
/**
* NameSimplifiedChinese.
*/
public Builder nameSimplifiedChinese(String nameSimplifiedChinese) {
this.nameSimplifiedChinese = nameSimplifiedChinese;
return this;
}
/**
* NameSort.
*/
public Builder nameSort(String nameSort) {
this.nameSort = nameSort;
return this;
}
/**
* OnSale.
*/
public Builder onSale(String onSale) {
this.onSale = onSale;
return this;
}
/**
* OwnerAddress.
*/
public Builder ownerAddress(String ownerAddress) {
this.ownerAddress = ownerAddress;
return this;
}
/**
* OwnerEnAddress.
*/
public Builder ownerEnAddress(String ownerEnAddress) {
this.ownerEnAddress = ownerEnAddress;
return this;
}
/**
* OwnerEnName.
*/
public Builder ownerEnName(String ownerEnName) {
this.ownerEnName = ownerEnName;
return this;
}
/**
* OwnerName.
*/
public Builder ownerName(String ownerName) {
this.ownerName = ownerName;
return this;
}
/**
* PreAnnDate.
*/
public Builder preAnnDate(String preAnnDate) {
this.preAnnDate = preAnnDate;
return this;
}
/**
* PreAnnNum.
*/
public Builder preAnnNum(String preAnnNum) {
this.preAnnNum = preAnnNum;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.product = product;
return this;
}
/**
* ProductDel.
*/
public Builder productDel(java.util.List < String > productDel) {
this.productDel = productDel;
return this;
}
/**
* ProductDescription.
*/
public Builder productDescription(String productDescription) {
this.productDescription = productDescription;
return this;
}
/**
* RegAnnNum.
*/
public Builder regAnnNum(String regAnnNum) {
this.regAnnNum = regAnnNum;
return this;
}
/**
* RegistrationNumber.
*/
public Builder registrationNumber(String registrationNumber) {
this.registrationNumber = registrationNumber;
return this;
}
/**
* Share.
*/
public Builder share(String share) {
this.share = share;
return this;
}
/**
* SimilarGroupDel.
*/
public Builder similarGroupDel(java.util.List < String > similarGroupDel) {
this.similarGroupDel = similarGroupDel;
return this;
}
/**
* Uid.
*/
public Builder uid(String uid) {
this.uid = uid;
return this;
}
/**
* WellKnow.
*/
public Builder wellKnow(String wellKnow) {
this.wellKnow = wellKnow;
return this;
}
public TrademarkSearchContents build() {
return new TrademarkSearchContents(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/PutMeasureDataRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PutMeasureDataRequest} extends {@link RequestModel}
*
* <p>PutMeasureDataRequest</p>
*/
public class PutMeasureDataRequest extends Request {
@Body
@NameInMap("BizType")
@Validation(required = true)
private String bizType;
@Body
@NameInMap("Data")
@Validation(required = true)
private String data;
@Body
@NameInMap("DataType")
@Validation(required = true)
private String dataType;
@Body
@NameInMap("EndTime")
@Validation(required = true)
private String endTime;
@Body
@NameInMap("StartTime")
@Validation(required = true)
private String startTime;
private PutMeasureDataRequest(Builder builder) {
super(builder);
this.bizType = builder.bizType;
this.data = builder.data;
this.dataType = builder.dataType;
this.endTime = builder.endTime;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static PutMeasureDataRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return dataType
*/
public String getDataType() {
return this.dataType;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return startTime
*/
public String getStartTime() {
return this.startTime;
}
public static final class Builder extends Request.Builder<PutMeasureDataRequest, Builder> {
private String bizType;
private String data;
private String dataType;
private String endTime;
private String startTime;
private Builder() {
super();
}
private Builder(PutMeasureDataRequest request) {
super(request);
this.bizType = request.bizType;
this.data = request.data;
this.dataType = request.dataType;
this.endTime = request.endTime;
this.startTime = request.startTime;
}
/**
* BizType.
*/
public Builder bizType(String bizType) {
this.putBodyParameter("BizType", bizType);
this.bizType = bizType;
return this;
}
/**
* Data.
*/
public Builder data(String data) {
this.putBodyParameter("Data", data);
this.data = data;
return this;
}
/**
* DataType.
*/
public Builder dataType(String dataType) {
this.putBodyParameter("DataType", dataType);
this.dataType = dataType;
return this;
}
/**
* EndTime.
*/
public Builder endTime(String endTime) {
this.putBodyParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* StartTime.
*/
public Builder startTime(String startTime) {
this.putBodyParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
@Override
public PutMeasureDataRequest build() {
return new PutMeasureDataRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/PutMeasureDataResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PutMeasureDataResponse} extends {@link TeaModel}
*
* <p>PutMeasureDataResponse</p>
*/
public class PutMeasureDataResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private PutMeasureDataResponseBody body;
private PutMeasureDataResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static PutMeasureDataResponse 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 PutMeasureDataResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<PutMeasureDataResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(PutMeasureDataResponseBody body);
@Override
PutMeasureDataResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<PutMeasureDataResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private PutMeasureDataResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(PutMeasureDataResponse 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(PutMeasureDataResponseBody body) {
this.body = body;
return this;
}
@Override
public PutMeasureDataResponse build() {
return new PutMeasureDataResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/PutMeasureDataResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PutMeasureDataResponseBody} extends {@link TeaModel}
*
* <p>PutMeasureDataResponseBody</p>
*/
public class PutMeasureDataResponseBody extends TeaModel {
@NameInMap("Data")
private Boolean data;
@NameInMap("RequestId")
private String requestId;
private PutMeasureDataResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static PutMeasureDataResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Boolean getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Boolean data;
private String requestId;
/**
* Data.
*/
public Builder data(Boolean data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public PutMeasureDataResponseBody build() {
return new PutMeasureDataResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/PutMeasureReadyFlagRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PutMeasureReadyFlagRequest} extends {@link RequestModel}
*
* <p>PutMeasureReadyFlagRequest</p>
*/
public class PutMeasureReadyFlagRequest extends Request {
@Query
@NameInMap("BizType")
@Validation(required = true)
private String bizType;
@Query
@NameInMap("DataType")
@Validation(required = true)
private String dataType;
@Query
@NameInMap("EndTime")
@Validation(required = true)
private String endTime;
@Query
@NameInMap("ReadyFlag")
@Validation(required = true)
private String readyFlag;
@Query
@NameInMap("StartTime")
@Validation(required = true)
private String startTime;
private PutMeasureReadyFlagRequest(Builder builder) {
super(builder);
this.bizType = builder.bizType;
this.dataType = builder.dataType;
this.endTime = builder.endTime;
this.readyFlag = builder.readyFlag;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static PutMeasureReadyFlagRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bizType
*/
public String getBizType() {
return this.bizType;
}
/**
* @return dataType
*/
public String getDataType() {
return this.dataType;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return readyFlag
*/
public String getReadyFlag() {
return this.readyFlag;
}
/**
* @return startTime
*/
public String getStartTime() {
return this.startTime;
}
public static final class Builder extends Request.Builder<PutMeasureReadyFlagRequest, Builder> {
private String bizType;
private String dataType;
private String endTime;
private String readyFlag;
private String startTime;
private Builder() {
super();
}
private Builder(PutMeasureReadyFlagRequest request) {
super(request);
this.bizType = request.bizType;
this.dataType = request.dataType;
this.endTime = request.endTime;
this.readyFlag = request.readyFlag;
this.startTime = request.startTime;
}
/**
* BizType.
*/
public Builder bizType(String bizType) {
this.putQueryParameter("BizType", bizType);
this.bizType = bizType;
return this;
}
/**
* DataType.
*/
public Builder dataType(String dataType) {
this.putQueryParameter("DataType", dataType);
this.dataType = dataType;
return this;
}
/**
* EndTime.
*/
public Builder endTime(String endTime) {
this.putQueryParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* ReadyFlag.
*/
public Builder readyFlag(String readyFlag) {
this.putQueryParameter("ReadyFlag", readyFlag);
this.readyFlag = readyFlag;
return this;
}
/**
* StartTime.
*/
public Builder startTime(String startTime) {
this.putQueryParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
@Override
public PutMeasureReadyFlagRequest build() {
return new PutMeasureReadyFlagRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/PutMeasureReadyFlagResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PutMeasureReadyFlagResponse} extends {@link TeaModel}
*
* <p>PutMeasureReadyFlagResponse</p>
*/
public class PutMeasureReadyFlagResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private PutMeasureReadyFlagResponseBody body;
private PutMeasureReadyFlagResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static PutMeasureReadyFlagResponse 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 PutMeasureReadyFlagResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<PutMeasureReadyFlagResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(PutMeasureReadyFlagResponseBody body);
@Override
PutMeasureReadyFlagResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<PutMeasureReadyFlagResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private PutMeasureReadyFlagResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(PutMeasureReadyFlagResponse 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(PutMeasureReadyFlagResponseBody body) {
this.body = body;
return this;
}
@Override
public PutMeasureReadyFlagResponse build() {
return new PutMeasureReadyFlagResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/PutMeasureReadyFlagResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PutMeasureReadyFlagResponseBody} extends {@link TeaModel}
*
* <p>PutMeasureReadyFlagResponseBody</p>
*/
public class PutMeasureReadyFlagResponseBody extends TeaModel {
@NameInMap("Data")
private Boolean data;
@NameInMap("RequestId")
private String requestId;
private PutMeasureReadyFlagResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static PutMeasureReadyFlagResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Boolean getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Boolean data;
private String requestId;
/**
* Data.
*/
public Builder data(Boolean data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public PutMeasureReadyFlagResponseBody build() {
return new PutMeasureReadyFlagResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryActivityItemsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryActivityItemsRequest} extends {@link RequestModel}
*
* <p>QueryActivityItemsRequest</p>
*/
public class QueryActivityItemsRequest extends Request {
@Query
@NameInMap("ActivityId")
private Integer activityId;
@Query
@NameInMap("ExtendInfo")
private String extendInfo;
@Query
@NameInMap("FloorIndex")
private Integer floorIndex;
@Query
@NameInMap("Mock")
private Boolean mock;
@Query
@NameInMap("PageIndex")
private Integer pageIndex;
@Query
@NameInMap("PageSize")
@Validation(maximum = 30, minimum = 3)
private Integer pageSize;
@Query
@NameInMap("Refresh")
private Boolean refresh;
@Query
@NameInMap("UmId")
private String umId;
private QueryActivityItemsRequest(Builder builder) {
super(builder);
this.activityId = builder.activityId;
this.extendInfo = builder.extendInfo;
this.floorIndex = builder.floorIndex;
this.mock = builder.mock;
this.pageIndex = builder.pageIndex;
this.pageSize = builder.pageSize;
this.refresh = builder.refresh;
this.umId = builder.umId;
}
public static Builder builder() {
return new Builder();
}
public static QueryActivityItemsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return activityId
*/
public Integer getActivityId() {
return this.activityId;
}
/**
* @return extendInfo
*/
public String getExtendInfo() {
return this.extendInfo;
}
/**
* @return floorIndex
*/
public Integer getFloorIndex() {
return this.floorIndex;
}
/**
* @return mock
*/
public Boolean getMock() {
return this.mock;
}
/**
* @return pageIndex
*/
public Integer getPageIndex() {
return this.pageIndex;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return refresh
*/
public Boolean getRefresh() {
return this.refresh;
}
/**
* @return umId
*/
public String getUmId() {
return this.umId;
}
public static final class Builder extends Request.Builder<QueryActivityItemsRequest, Builder> {
private Integer activityId;
private String extendInfo;
private Integer floorIndex;
private Boolean mock;
private Integer pageIndex;
private Integer pageSize;
private Boolean refresh;
private String umId;
private Builder() {
super();
}
private Builder(QueryActivityItemsRequest request) {
super(request);
this.activityId = request.activityId;
this.extendInfo = request.extendInfo;
this.floorIndex = request.floorIndex;
this.mock = request.mock;
this.pageIndex = request.pageIndex;
this.pageSize = request.pageSize;
this.refresh = request.refresh;
this.umId = request.umId;
}
/**
* ActivityId.
*/
public Builder activityId(Integer activityId) {
this.putQueryParameter("ActivityId", activityId);
this.activityId = activityId;
return this;
}
/**
* ExtendInfo.
*/
public Builder extendInfo(String extendInfo) {
this.putQueryParameter("ExtendInfo", extendInfo);
this.extendInfo = extendInfo;
return this;
}
/**
* FloorIndex.
*/
public Builder floorIndex(Integer floorIndex) {
this.putQueryParameter("FloorIndex", floorIndex);
this.floorIndex = floorIndex;
return this;
}
/**
* Mock.
*/
public Builder mock(Boolean mock) {
this.putQueryParameter("Mock", mock);
this.mock = mock;
return this;
}
/**
* PageIndex.
*/
public Builder pageIndex(Integer pageIndex) {
this.putQueryParameter("PageIndex", pageIndex);
this.pageIndex = pageIndex;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* Refresh.
*/
public Builder refresh(Boolean refresh) {
this.putQueryParameter("Refresh", refresh);
this.refresh = refresh;
return this;
}
/**
* UmId.
*/
public Builder umId(String umId) {
this.putQueryParameter("UmId", umId);
this.umId = umId;
return this;
}
@Override
public QueryActivityItemsRequest build() {
return new QueryActivityItemsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryActivityItemsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryActivityItemsResponse} extends {@link TeaModel}
*
* <p>QueryActivityItemsResponse</p>
*/
public class QueryActivityItemsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private QueryActivityItemsResponseBody body;
private QueryActivityItemsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryActivityItemsResponse 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 QueryActivityItemsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryActivityItemsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryActivityItemsResponseBody body);
@Override
QueryActivityItemsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryActivityItemsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryActivityItemsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryActivityItemsResponse 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(QueryActivityItemsResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryActivityItemsResponse build() {
return new QueryActivityItemsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryActivityItemsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryActivityItemsResponseBody} extends {@link TeaModel}
*
* <p>QueryActivityItemsResponseBody</p>
*/
public class QueryActivityItemsResponseBody extends TeaModel {
@NameInMap("Module")
private Module module;
private QueryActivityItemsResponseBody(Builder builder) {
this.module = builder.module;
}
public static Builder builder() {
return new Builder();
}
public static QueryActivityItemsResponseBody create() {
return builder().build();
}
/**
* @return module
*/
public Module getModule() {
return this.module;
}
public static final class Builder {
private Module module;
/**
* Module.
*/
public Builder module(Module module) {
this.module = module;
return this;
}
public QueryActivityItemsResponseBody build() {
return new QueryActivityItemsResponseBody(this);
}
}
public static class SubFloor extends TeaModel {
@NameInMap("Icon")
private String icon;
@NameInMap("Name")
private String name;
@NameInMap("Title")
private String title;
@NameInMap("Value")
private String value;
private SubFloor(Builder builder) {
this.icon = builder.icon;
this.name = builder.name;
this.title = builder.title;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static SubFloor create() {
return builder().build();
}
/**
* @return icon
*/
public String getIcon() {
return this.icon;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String icon;
private String name;
private String title;
private String value;
/**
* Icon.
*/
public Builder icon(String icon) {
this.icon = icon;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* Title.
*/
public Builder title(String title) {
this.title = title;
return this;
}
/**
* Value.
*/
public Builder value(String value) {
this.value = value;
return this;
}
public SubFloor build() {
return new SubFloor(this);
}
}
}
public static class SubTitles extends TeaModel {
@NameInMap("subFloor")
private java.util.List < SubFloor> subFloor;
private SubTitles(Builder builder) {
this.subFloor = builder.subFloor;
}
public static Builder builder() {
return new Builder();
}
public static SubTitles create() {
return builder().build();
}
/**
* @return subFloor
*/
public java.util.List < SubFloor> getSubFloor() {
return this.subFloor;
}
public static final class Builder {
private java.util.List < SubFloor> subFloor;
/**
* subFloor.
*/
public Builder subFloor(java.util.List < SubFloor> subFloor) {
this.subFloor = subFloor;
return this;
}
public SubTitles build() {
return new SubTitles(this);
}
}
}
public static class Floor extends TeaModel {
@NameInMap("Icon")
private String icon;
@NameInMap("Index")
private Integer index;
@NameInMap("Name")
private String name;
@NameInMap("SubTitles")
private SubTitles subTitles;
@NameInMap("Title")
private String title;
private Floor(Builder builder) {
this.icon = builder.icon;
this.index = builder.index;
this.name = builder.name;
this.subTitles = builder.subTitles;
this.title = builder.title;
}
public static Builder builder() {
return new Builder();
}
public static Floor create() {
return builder().build();
}
/**
* @return icon
*/
public String getIcon() {
return this.icon;
}
/**
* @return index
*/
public Integer getIndex() {
return this.index;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return subTitles
*/
public SubTitles getSubTitles() {
return this.subTitles;
}
/**
* @return title
*/
public String getTitle() {
return this.title;
}
public static final class Builder {
private String icon;
private Integer index;
private String name;
private SubTitles subTitles;
private String title;
/**
* Icon.
*/
public Builder icon(String icon) {
this.icon = icon;
return this;
}
/**
* Index.
*/
public Builder index(Integer index) {
this.index = index;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* SubTitles.
*/
public Builder subTitles(SubTitles subTitles) {
this.subTitles = subTitles;
return this;
}
/**
* Title.
*/
public Builder title(String title) {
this.title = title;
return this;
}
public Floor build() {
return new Floor(this);
}
}
}
public static class FloorDisplayInfos extends TeaModel {
@NameInMap("floor")
private java.util.List < Floor> floor;
private FloorDisplayInfos(Builder builder) {
this.floor = builder.floor;
}
public static Builder builder() {
return new Builder();
}
public static FloorDisplayInfos create() {
return builder().build();
}
/**
* @return floor
*/
public java.util.List < Floor> getFloor() {
return this.floor;
}
public static final class Builder {
private java.util.List < Floor> floor;
/**
* floor.
*/
public Builder floor(java.util.List < Floor> floor) {
this.floor = floor;
return this;
}
public FloorDisplayInfos build() {
return new FloorDisplayInfos(this);
}
}
}
public static class Module extends TeaModel {
@NameInMap("Data")
private String data;
@NameInMap("FloorDisplayInfos")
private FloorDisplayInfos floorDisplayInfos;
@NameInMap("FloorItems")
private String floorItems;
private Module(Builder builder) {
this.data = builder.data;
this.floorDisplayInfos = builder.floorDisplayInfos;
this.floorItems = builder.floorItems;
}
public static Builder builder() {
return new Builder();
}
public static Module create() {
return builder().build();
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return floorDisplayInfos
*/
public FloorDisplayInfos getFloorDisplayInfos() {
return this.floorDisplayInfos;
}
/**
* @return floorItems
*/
public String getFloorItems() {
return this.floorItems;
}
public static final class Builder {
private String data;
private FloorDisplayInfos floorDisplayInfos;
private String floorItems;
/**
* Data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* FloorDisplayInfos.
*/
public Builder floorDisplayInfos(FloorDisplayInfos floorDisplayInfos) {
this.floorDisplayInfos = floorDisplayInfos;
return this;
}
/**
* FloorItems.
*/
public Builder floorItems(String floorItems) {
this.floorItems = floorItems;
return this;
}
public Module build() {
return new Module(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryAliyunUidRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryAliyunUidRequest} extends {@link RequestModel}
*
* <p>QueryAliyunUidRequest</p>
*/
public class QueryAliyunUidRequest extends Request {
@Query
@NameInMap("TbUid")
@Validation(required = true)
private String tbUid;
private QueryAliyunUidRequest(Builder builder) {
super(builder);
this.tbUid = builder.tbUid;
}
public static Builder builder() {
return new Builder();
}
public static QueryAliyunUidRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return tbUid
*/
public String getTbUid() {
return this.tbUid;
}
public static final class Builder extends Request.Builder<QueryAliyunUidRequest, Builder> {
private String tbUid;
private Builder() {
super();
}
private Builder(QueryAliyunUidRequest request) {
super(request);
this.tbUid = request.tbUid;
}
/**
* TbUid.
*/
public Builder tbUid(String tbUid) {
this.putQueryParameter("TbUid", tbUid);
this.tbUid = tbUid;
return this;
}
@Override
public QueryAliyunUidRequest build() {
return new QueryAliyunUidRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryAliyunUidResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryAliyunUidResponse} extends {@link TeaModel}
*
* <p>QueryAliyunUidResponse</p>
*/
public class QueryAliyunUidResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private QueryAliyunUidResponseBody body;
private QueryAliyunUidResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryAliyunUidResponse 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 QueryAliyunUidResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryAliyunUidResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryAliyunUidResponseBody body);
@Override
QueryAliyunUidResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryAliyunUidResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryAliyunUidResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryAliyunUidResponse 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(QueryAliyunUidResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryAliyunUidResponse build() {
return new QueryAliyunUidResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryAliyunUidResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryAliyunUidResponseBody} extends {@link TeaModel}
*
* <p>QueryAliyunUidResponseBody</p>
*/
public class QueryAliyunUidResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
@NameInMap("Uid")
private String uid;
private QueryAliyunUidResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
this.uid = builder.uid;
}
public static Builder builder() {
return new Builder();
}
public static QueryAliyunUidResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
/**
* @return uid
*/
public String getUid() {
return this.uid;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
private Boolean success;
private String uid;
/**
* 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;
}
/**
* Uid.
*/
public Builder uid(String uid) {
this.uid = uid;
return this;
}
public QueryAliyunUidResponseBody build() {
return new QueryAliyunUidResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902 | java-sources/com/aliyun/alibabacloud-trademark20190902/1.0.0/com/aliyun/sdk/service/trademark20190902/models/QueryDetailItemRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.trademark20190902.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryDetailItemRequest} extends {@link RequestModel}
*
* <p>QueryDetailItemRequest</p>
*/
public class QueryDetailItemRequest extends Request {
@Query
@NameInMap("DetailConvertType")
private String detailConvertType;
@Query
@NameInMap("DetailId")
private String detailId;
@Query
@NameInMap("DetailType")
private String detailType;
@Query
@NameInMap("Mock")
private Boolean mock;
private QueryDetailItemRequest(Builder builder) {
super(builder);
this.detailConvertType = builder.detailConvertType;
this.detailId = builder.detailId;
this.detailType = builder.detailType;
this.mock = builder.mock;
}
public static Builder builder() {
return new Builder();
}
public static QueryDetailItemRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return detailConvertType
*/
public String getDetailConvertType() {
return this.detailConvertType;
}
/**
* @return detailId
*/
public String getDetailId() {
return this.detailId;
}
/**
* @return detailType
*/
public String getDetailType() {
return this.detailType;
}
/**
* @return mock
*/
public Boolean getMock() {
return this.mock;
}
public static final class Builder extends Request.Builder<QueryDetailItemRequest, Builder> {
private String detailConvertType;
private String detailId;
private String detailType;
private Boolean mock;
private Builder() {
super();
}
private Builder(QueryDetailItemRequest request) {
super(request);
this.detailConvertType = request.detailConvertType;
this.detailId = request.detailId;
this.detailType = request.detailType;
this.mock = request.mock;
}
/**
* DetailConvertType.
*/
public Builder detailConvertType(String detailConvertType) {
this.putQueryParameter("DetailConvertType", detailConvertType);
this.detailConvertType = detailConvertType;
return this;
}
/**
* DetailId.
*/
public Builder detailId(String detailId) {
this.putQueryParameter("DetailId", detailId);
this.detailId = detailId;
return this;
}
/**
* DetailType.
*/
public Builder detailType(String detailType) {
this.putQueryParameter("DetailType", detailType);
this.detailType = detailType;
return this;
}
/**
* Mock.
*/
public Builder mock(Boolean mock) {
this.putQueryParameter("Mock", mock);
this.mock = mock;
return this;
}
@Override
public QueryDetailItemRequest build() {
return new QueryDetailItemRequest(this);
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.