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

com.aliyun.dingtalkwms_1_0.models.QueryGoodsListRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkwms_1_0.models;

import com.aliyun.tea.*;

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

1631289600000

*/ @NameInMap("endTimeInMills") public Long endTimeInMills; /** * example: *

10

*/ @NameInMap("maxResults") public Long maxResults; /** * example: *

1

*/ @NameInMap("nextToken") public Long nextToken; /** * example: *

1631289600000

*/ @NameInMap("startTimeInMills") public Long startTimeInMills; public static QueryGoodsListRequest build(java.util.Map map) throws Exception { QueryGoodsListRequest self = new QueryGoodsListRequest(); return TeaModel.build(map, self); } public QueryGoodsListRequest setEndTimeInMills(Long endTimeInMills) { this.endTimeInMills = endTimeInMills; return this; } public Long getEndTimeInMills() { return this.endTimeInMills; } public QueryGoodsListRequest setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public QueryGoodsListRequest setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public QueryGoodsListRequest setStartTimeInMills(Long startTimeInMills) { this.startTimeInMills = startTimeInMills; return this; } public Long getStartTimeInMills() { return this.startTimeInMills; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy