com.aliyun.linkedmall20230930.models.ShopPageResult Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.linkedmall20230930.models;
import com.aliyun.tea.*;
public class ShopPageResult extends TeaModel {
/**
* example:
* 3239281273464326823
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("shopList")
public java.util.List shopList;
/**
* example:
* 24
*/
@NameInMap("total")
public Integer total;
public static ShopPageResult build(java.util.Map map) throws Exception {
ShopPageResult self = new ShopPageResult();
return TeaModel.build(map, self);
}
public ShopPageResult setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ShopPageResult setShopList(java.util.List shopList) {
this.shopList = shopList;
return this;
}
public java.util.List getShopList() {
return this.shopList;
}
public ShopPageResult setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}