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

com.aliyun.dingtalkassistant_1_0.models.GetAskDetailRequest 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.dingtalkassistant_1_0.models;

import com.aliyun.tea.*;

public class GetAskDetailRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("assistantId") public String assistantId; @NameInMap("endTime") public Long endTime; /** *

This parameter is required.

*/ @NameInMap("offset") public Long offset; /** *

This parameter is required.

*/ @NameInMap("pageSize") public Integer pageSize; @NameInMap("startTime") public Long startTime; public static GetAskDetailRequest build(java.util.Map map) throws Exception { GetAskDetailRequest self = new GetAskDetailRequest(); return TeaModel.build(map, self); } public GetAskDetailRequest setAssistantId(String assistantId) { this.assistantId = assistantId; return this; } public String getAssistantId() { return this.assistantId; } public GetAskDetailRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public GetAskDetailRequest setOffset(Long offset) { this.offset = offset; return this; } public Long getOffset() { return this.offset; } public GetAskDetailRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public GetAskDetailRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy