com.aliyun.dingtalktrip_1_0.models.SyncSecretKeyRequest 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.dingtalktrip_1_0.models;
import com.aliyun.tea.*;
public class SyncSecretKeyRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ADD
*/
@NameInMap("actionType")
public String actionType;
/**
* example:
* dnsuuiwenudsjid
*/
@NameInMap("secretString")
public String secretString;
/**
* This parameter is required.
*
* example:
* ding001
*/
@NameInMap("targetCorpId")
public String targetCorpId;
/**
* example:
* dingduisdvfd
*/
@NameInMap("tripAppKey")
public String tripAppKey;
/**
* example:
* dhsuibdusijue
*/
@NameInMap("tripAppSecurity")
public String tripAppSecurity;
/**
* example:
* isv001
*/
@NameInMap("tripCorpId")
public String tripCorpId;
public static SyncSecretKeyRequest build(java.util.Map map) throws Exception {
SyncSecretKeyRequest self = new SyncSecretKeyRequest();
return TeaModel.build(map, self);
}
public SyncSecretKeyRequest setActionType(String actionType) {
this.actionType = actionType;
return this;
}
public String getActionType() {
return this.actionType;
}
public SyncSecretKeyRequest setSecretString(String secretString) {
this.secretString = secretString;
return this;
}
public String getSecretString() {
return this.secretString;
}
public SyncSecretKeyRequest setTargetCorpId(String targetCorpId) {
this.targetCorpId = targetCorpId;
return this;
}
public String getTargetCorpId() {
return this.targetCorpId;
}
public SyncSecretKeyRequest setTripAppKey(String tripAppKey) {
this.tripAppKey = tripAppKey;
return this;
}
public String getTripAppKey() {
return this.tripAppKey;
}
public SyncSecretKeyRequest setTripAppSecurity(String tripAppSecurity) {
this.tripAppSecurity = tripAppSecurity;
return this;
}
public String getTripAppSecurity() {
return this.tripAppSecurity;
}
public SyncSecretKeyRequest setTripCorpId(String tripCorpId) {
this.tripCorpId = tripCorpId;
return this;
}
public String getTripCorpId() {
return this.tripCorpId;
}
}