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

com.aliyun.dingtalkcrm_1_0.models.GetRelatedViewTabDataRequest 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.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

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

PROC-62829702-A377-42A9-9CB3-E1C691A0CEDB

*/ @NameInMap("formCode") public String formCode; /** * example: *

10

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

0

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

OpenDataField_OV2K4SOW2ZGG

*/ @NameInMap("relatedField") public String relatedField; /** * example: *

u_dxcugzT0aPQvcK2PIkzQ00841721291058

*/ @NameInMap("relatedInstId") public String relatedInstId; /** * example: *

manager6034

*/ @NameInMap("viewUserId") public String viewUserId; public static GetRelatedViewTabDataRequest build(java.util.Map map) throws Exception { GetRelatedViewTabDataRequest self = new GetRelatedViewTabDataRequest(); return TeaModel.build(map, self); } public GetRelatedViewTabDataRequest setFormCode(String formCode) { this.formCode = formCode; return this; } public String getFormCode() { return this.formCode; } public GetRelatedViewTabDataRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public GetRelatedViewTabDataRequest setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public GetRelatedViewTabDataRequest setRelatedField(String relatedField) { this.relatedField = relatedField; return this; } public String getRelatedField() { return this.relatedField; } public GetRelatedViewTabDataRequest setRelatedInstId(String relatedInstId) { this.relatedInstId = relatedInstId; return this; } public String getRelatedInstId() { return this.relatedInstId; } public GetRelatedViewTabDataRequest setViewUserId(String viewUserId) { this.viewUserId = viewUserId; return this; } public String getViewUserId() { return this.viewUserId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy