All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.linkedmall20230930.models.GetPurchaserShopRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.linkedmall20230930.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link GetPurchaserShopRequest} extends {@link RequestModel}
 *
 * 

GetPurchaserShopRequest

*/ public class GetPurchaserShopRequest extends Request { @com.aliyun.core.annotation.Path @com.aliyun.core.annotation.NameInMap("purchaserId") @com.aliyun.core.annotation.Validation(required = true) private String purchaserId; private GetPurchaserShopRequest(Builder builder) { super(builder); this.purchaserId = builder.purchaserId; } public static Builder builder() { return new Builder(); } public static GetPurchaserShopRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return purchaserId */ public String getPurchaserId() { return this.purchaserId; } public static final class Builder extends Request.Builder { private String purchaserId; private Builder() { super(); } private Builder(GetPurchaserShopRequest request) { super(request); this.purchaserId = request.purchaserId; } /** * purchaserId. */ public Builder purchaserId(String purchaserId) { this.putPathParameter("purchaserId", purchaserId); this.purchaserId = purchaserId; return this; } @Override public GetPurchaserShopRequest build() { return new GetPurchaserShopRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy