com.aliyun.dingtalkedu_1_0.models.VPaasProxyRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class VPaasProxyRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* init
*/
@NameInMap("actionCode")
public String actionCode;
/**
* This parameter is required.
*
* example:
* {"a":"testA","b":"testB"}
*/
@NameInMap("params")
public String params;
/**
* This parameter is required.
*
* example:
* MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCVGpgpjjbBS1Pg1tYx23KDJiXokVdKFLdJznKxQe+fZcIOtcQDIYrfrBfHmiC/gASeF5NUTSrwjkr/i/2gqhIIxRinNJQm8L4GJ6fRGjN8tND7AfhfkGYIfOJCLFSiaYSa4TCM7WsmztkpR7DSvb4P+K/ppqYFfUB46a9nCcvecQIDAQAB
*/
@NameInMap("publicKey")
public String publicKey;
public static VPaasProxyRequest build(java.util.Map map) throws Exception {
VPaasProxyRequest self = new VPaasProxyRequest();
return TeaModel.build(map, self);
}
public VPaasProxyRequest setActionCode(String actionCode) {
this.actionCode = actionCode;
return this;
}
public String getActionCode() {
return this.actionCode;
}
public VPaasProxyRequest setParams(String params) {
this.params = params;
return this;
}
public String getParams() {
return this.params;
}
public VPaasProxyRequest setPublicKey(String publicKey) {
this.publicKey = publicKey;
return this;
}
public String getPublicKey() {
return this.publicKey;
}
}