com.aliyun.dingtalktrade_1_0.models.CreateNoteForIsvRequest 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.dingtalktrade_1_0.models;
import com.aliyun.tea.*;
public class CreateNoteForIsvRequest extends TeaModel {
@NameInMap("contactName")
public String contactName;
/**
* This parameter is required.
*/
@NameInMap("contactPhoneNum")
public String contactPhoneNum;
@NameInMap("contactTitle")
public String contactTitle;
/**
* This parameter is required.
*
* if can be null:
* false
*/
@NameInMap("content")
public String content;
/**
* This parameter is required.
*/
@NameInMap("corpId")
public String corpId;
/**
* This parameter is required.
*/
@NameInMap("inputPhoneNum")
public String inputPhoneNum;
public static CreateNoteForIsvRequest build(java.util.Map map) throws Exception {
CreateNoteForIsvRequest self = new CreateNoteForIsvRequest();
return TeaModel.build(map, self);
}
public CreateNoteForIsvRequest setContactName(String contactName) {
this.contactName = contactName;
return this;
}
public String getContactName() {
return this.contactName;
}
public CreateNoteForIsvRequest setContactPhoneNum(String contactPhoneNum) {
this.contactPhoneNum = contactPhoneNum;
return this;
}
public String getContactPhoneNum() {
return this.contactPhoneNum;
}
public CreateNoteForIsvRequest setContactTitle(String contactTitle) {
this.contactTitle = contactTitle;
return this;
}
public String getContactTitle() {
return this.contactTitle;
}
public CreateNoteForIsvRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public CreateNoteForIsvRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public CreateNoteForIsvRequest setInputPhoneNum(String inputPhoneNum) {
this.inputPhoneNum = inputPhoneNum;
return this;
}
public String getInputPhoneNum() {
return this.inputPhoneNum;
}
}