com.aliyun.linkedmall20230930.models.ShopStatusChangeRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.linkedmall20230930.models;
import com.aliyun.tea.*;
public class ShopStatusChangeRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("shopId")
public String shopId;
/**
* This parameter is required.
*/
@NameInMap("shopStatus")
public String shopStatus;
public static ShopStatusChangeRequest build(java.util.Map map) throws Exception {
ShopStatusChangeRequest self = new ShopStatusChangeRequest();
return TeaModel.build(map, self);
}
public ShopStatusChangeRequest setShopId(String shopId) {
this.shopId = shopId;
return this;
}
public String getShopId() {
return this.shopId;
}
public ShopStatusChangeRequest setShopStatus(String shopStatus) {
this.shopStatus = shopStatus;
return this;
}
public String getShopStatus() {
return this.shopStatus;
}
}