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

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

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

import com.aliyun.tea.*;

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

110000

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

This parameter is required.

* * example: *

56****2304

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy