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

com.aliyun.dingtalkedu_1_0.models.VPaasProxyRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy