com.lark.oapi.service.hire.v1.model.ApplicationTalent Maven / Gradle / Ivy
Show all versions of oapi-sdk Show documentation
// Code generated by lark suite oapi sdk gen
/*
* MIT License
*
* Copyright (c) 2022 Lark Technologies Pte. Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice, shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.lark.oapi.service.hire.v1.model;
import com.lark.oapi.core.response.EmptyData;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.SerializedName;
import com.lark.oapi.core.annotation.Body;
import com.lark.oapi.core.annotation.Path;
import com.lark.oapi.core.annotation.Query;
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import com.lark.oapi.core.utils.Strings;
import com.lark.oapi.core.response.BaseResponse;
public class ApplicationTalent {
/**
* ID
* 示例值:
*/
@SerializedName("id")
private String id;
/**
* 基础信息
*
示例值:
*/
@SerializedName("basic_info")
private ApplicationTalentBasicInfo basicInfo;
/**
* 自我评价
*
示例值:
*/
@SerializedName("self_evaluation")
private String selfEvaluation;
/**
* 教育经历
*
示例值:
*/
@SerializedName("education_list")
private AppliTalentEducationInfo[] educationList;
/**
* 工作经历
*
示例值:
*/
@SerializedName("career_list")
private ApplicationTalentCareerInfo[] careerList;
/**
* 项目经历
*
示例值:
*/
@SerializedName("project_list")
private ApplicationTalentProjectInfo[] projectList;
/**
* 作品集
*
示例值:
*/
@SerializedName("works_list")
private ApplicationTalentWorksInfo[] worksList;
/**
* 获奖列表
*
示例值:
*/
@SerializedName("award_list")
private ApplicationTalentAwardInfo[] awardList;
/**
* 竞赛列表
*
示例值:
*/
@SerializedName("competition_list")
private AppliTalentCompetitionInfo[] competitionList;
/**
* 证书列表
*
示例值:
*/
@SerializedName("certificate_list")
private AppliTalentCertificateInfo[] certificateList;
/**
* 语言列表
*
示例值:
*/
@SerializedName("language_list")
private ApplicationTalentLanguageInfo[] languageList;
/**
* SNS列表
*
示例值:
*/
@SerializedName("sns_list")
private ApplicationTalentSnsInfo[] snsList;
/**
* 附件简历列表
*
示例值:
*/
@SerializedName("attachment_resume_list")
private AppliTalentAttachResumeInfo[] attachmentResumeList;
// builder 开始
public ApplicationTalent() {
}
public ApplicationTalent(Builder builder) {
/**
* ID
*
示例值:
*/
this.id = builder.id;
/**
* 基础信息
*
示例值:
*/
this.basicInfo = builder.basicInfo;
/**
* 自我评价
*
示例值:
*/
this.selfEvaluation = builder.selfEvaluation;
/**
* 教育经历
*
示例值:
*/
this.educationList = builder.educationList;
/**
* 工作经历
*
示例值:
*/
this.careerList = builder.careerList;
/**
* 项目经历
*
示例值:
*/
this.projectList = builder.projectList;
/**
* 作品集
*
示例值:
*/
this.worksList = builder.worksList;
/**
* 获奖列表
*
示例值:
*/
this.awardList = builder.awardList;
/**
* 竞赛列表
*
示例值:
*/
this.competitionList = builder.competitionList;
/**
* 证书列表
*
示例值:
*/
this.certificateList = builder.certificateList;
/**
* 语言列表
*
示例值:
*/
this.languageList = builder.languageList;
/**
* SNS列表
*
示例值:
*/
this.snsList = builder.snsList;
/**
* 附件简历列表
*
示例值:
*/
this.attachmentResumeList = builder.attachmentResumeList;
}
public static Builder newBuilder() {
return new Builder();
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public ApplicationTalentBasicInfo getBasicInfo() {
return this.basicInfo;
}
public void setBasicInfo(ApplicationTalentBasicInfo basicInfo) {
this.basicInfo = basicInfo;
}
public String getSelfEvaluation() {
return this.selfEvaluation;
}
public void setSelfEvaluation(String selfEvaluation) {
this.selfEvaluation = selfEvaluation;
}
public AppliTalentEducationInfo[] getEducationList() {
return this.educationList;
}
public void setEducationList(AppliTalentEducationInfo[] educationList) {
this.educationList = educationList;
}
public ApplicationTalentCareerInfo[] getCareerList() {
return this.careerList;
}
public void setCareerList(ApplicationTalentCareerInfo[] careerList) {
this.careerList = careerList;
}
public ApplicationTalentProjectInfo[] getProjectList() {
return this.projectList;
}
public void setProjectList(ApplicationTalentProjectInfo[] projectList) {
this.projectList = projectList;
}
public ApplicationTalentWorksInfo[] getWorksList() {
return this.worksList;
}
public void setWorksList(ApplicationTalentWorksInfo[] worksList) {
this.worksList = worksList;
}
public ApplicationTalentAwardInfo[] getAwardList() {
return this.awardList;
}
public void setAwardList(ApplicationTalentAwardInfo[] awardList) {
this.awardList = awardList;
}
public AppliTalentCompetitionInfo[] getCompetitionList() {
return this.competitionList;
}
public void setCompetitionList(AppliTalentCompetitionInfo[] competitionList) {
this.competitionList = competitionList;
}
public AppliTalentCertificateInfo[] getCertificateList() {
return this.certificateList;
}
public void setCertificateList(AppliTalentCertificateInfo[] certificateList) {
this.certificateList = certificateList;
}
public ApplicationTalentLanguageInfo[] getLanguageList() {
return this.languageList;
}
public void setLanguageList(ApplicationTalentLanguageInfo[] languageList) {
this.languageList = languageList;
}
public ApplicationTalentSnsInfo[] getSnsList() {
return this.snsList;
}
public void setSnsList(ApplicationTalentSnsInfo[] snsList) {
this.snsList = snsList;
}
public AppliTalentAttachResumeInfo[] getAttachmentResumeList() {
return this.attachmentResumeList;
}
public void setAttachmentResumeList(AppliTalentAttachResumeInfo[] attachmentResumeList) {
this.attachmentResumeList = attachmentResumeList;
}
public static class Builder {
/**
* ID
*
示例值:
*/
private String id;
/**
* 基础信息
*
示例值:
*/
private ApplicationTalentBasicInfo basicInfo;
/**
* 自我评价
*
示例值:
*/
private String selfEvaluation;
/**
* 教育经历
*
示例值:
*/
private AppliTalentEducationInfo[] educationList;
/**
* 工作经历
*
示例值:
*/
private ApplicationTalentCareerInfo[] careerList;
/**
* 项目经历
*
示例值:
*/
private ApplicationTalentProjectInfo[] projectList;
/**
* 作品集
*
示例值:
*/
private ApplicationTalentWorksInfo[] worksList;
/**
* 获奖列表
*
示例值:
*/
private ApplicationTalentAwardInfo[] awardList;
/**
* 竞赛列表
*
示例值:
*/
private AppliTalentCompetitionInfo[] competitionList;
/**
* 证书列表
*
示例值:
*/
private AppliTalentCertificateInfo[] certificateList;
/**
* 语言列表
*
示例值:
*/
private ApplicationTalentLanguageInfo[] languageList;
/**
* SNS列表
*
示例值:
*/
private ApplicationTalentSnsInfo[] snsList;
/**
* 附件简历列表
*
示例值:
*/
private AppliTalentAttachResumeInfo[] attachmentResumeList;
/**
* ID
*
示例值:
*
* @param id
* @return
*/
public Builder id(String id) {
this.id = id;
return this;
}
/**
* 基础信息
*
示例值:
*
* @param basicInfo
* @return
*/
public Builder basicInfo(ApplicationTalentBasicInfo basicInfo) {
this.basicInfo = basicInfo;
return this;
}
/**
* 自我评价
*
示例值:
*
* @param selfEvaluation
* @return
*/
public Builder selfEvaluation(String selfEvaluation) {
this.selfEvaluation = selfEvaluation;
return this;
}
/**
* 教育经历
*
示例值:
*
* @param educationList
* @return
*/
public Builder educationList(AppliTalentEducationInfo[] educationList) {
this.educationList = educationList;
return this;
}
/**
* 工作经历
*
示例值:
*
* @param careerList
* @return
*/
public Builder careerList(ApplicationTalentCareerInfo[] careerList) {
this.careerList = careerList;
return this;
}
/**
* 项目经历
*
示例值:
*
* @param projectList
* @return
*/
public Builder projectList(ApplicationTalentProjectInfo[] projectList) {
this.projectList = projectList;
return this;
}
/**
* 作品集
*
示例值:
*
* @param worksList
* @return
*/
public Builder worksList(ApplicationTalentWorksInfo[] worksList) {
this.worksList = worksList;
return this;
}
/**
* 获奖列表
*
示例值:
*
* @param awardList
* @return
*/
public Builder awardList(ApplicationTalentAwardInfo[] awardList) {
this.awardList = awardList;
return this;
}
/**
* 竞赛列表
*
示例值:
*
* @param competitionList
* @return
*/
public Builder competitionList(AppliTalentCompetitionInfo[] competitionList) {
this.competitionList = competitionList;
return this;
}
/**
* 证书列表
*
示例值:
*
* @param certificateList
* @return
*/
public Builder certificateList(AppliTalentCertificateInfo[] certificateList) {
this.certificateList = certificateList;
return this;
}
/**
* 语言列表
*
示例值:
*
* @param languageList
* @return
*/
public Builder languageList(ApplicationTalentLanguageInfo[] languageList) {
this.languageList = languageList;
return this;
}
/**
* SNS列表
*
示例值:
*
* @param snsList
* @return
*/
public Builder snsList(ApplicationTalentSnsInfo[] snsList) {
this.snsList = snsList;
return this;
}
/**
* 附件简历列表
*
示例值:
*
* @param attachmentResumeList
* @return
*/
public Builder attachmentResumeList(AppliTalentAttachResumeInfo[] attachmentResumeList) {
this.attachmentResumeList = attachmentResumeList;
return this;
}
public ApplicationTalent build() {
return new ApplicationTalent(this);
}
}
}