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

com.aliyun.dingtalkconnector_1_0.models.PullDataByPkRequest 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.dingtalkconnector_1_0.models;

import com.aliyun.tea.*;

public class PullDataByPkRequest extends TeaModel {
    @NameInMap("appId")
    public String appId;

    /**
     * 

This parameter is required.

*/ @NameInMap("primaryKey") public String primaryKey; public static PullDataByPkRequest build(java.util.Map map) throws Exception { PullDataByPkRequest self = new PullDataByPkRequest(); return TeaModel.build(map, self); } public PullDataByPkRequest setAppId(String appId) { this.appId = appId; return this; } public String getAppId() { return this.appId; } public PullDataByPkRequest setPrimaryKey(String primaryKey) { this.primaryKey = primaryKey; return this; } public String getPrimaryKey() { return this.primaryKey; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy