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

com.aliyun.linkedmall20230930.models.SkuSaleInfoListQuery Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SkuSaleInfoListQuery extends TeaModel {
    /**
     * example:
     * 

110000

*/ @NameInMap("divisionCode") public String divisionCode; /** *

This parameter is required.

* * example: *

21000017

*/ @NameInMap("purchaserId") public String purchaserId; /** *

This parameter is required.

*/ @NameInMap("skuQueryParams") public java.util.List skuQueryParams; public static SkuSaleInfoListQuery build(java.util.Map map) throws Exception { SkuSaleInfoListQuery self = new SkuSaleInfoListQuery(); return TeaModel.build(map, self); } public SkuSaleInfoListQuery setDivisionCode(String divisionCode) { this.divisionCode = divisionCode; return this; } public String getDivisionCode() { return this.divisionCode; } public SkuSaleInfoListQuery setPurchaserId(String purchaserId) { this.purchaserId = purchaserId; return this; } public String getPurchaserId() { return this.purchaserId; } public SkuSaleInfoListQuery setSkuQueryParams(java.util.List skuQueryParams) { this.skuQueryParams = skuQueryParams; return this; } public java.util.List getSkuQueryParams() { return this.skuQueryParams; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy