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

com.lark.oapi.service.hire.v1.model.ExternalInterviewAssessment Maven / Gradle / Ivy

// 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 ExternalInterviewAssessment {
    /**
     * 外部面评 ID
     * 

示例值:6989181065243969836 */ @SerializedName("id") private String id; /** * 外部系统面评主键(仅用于幂等) *

示例值:123 */ @SerializedName("external_id") private String externalId; /** * 面试官姓名 *

示例值:shaojiale */ @SerializedName("username") private String username; /** * 面试结果 *

示例值:1 */ @SerializedName("conclusion") private Integer conclusion; /** * 评价维度列表 *

示例值: */ @SerializedName("assessment_dimension_list") private ExternalInterviewAssessmentDimension[] assessmentDimensionList; /** * 综合记录 *

示例值:hello world */ @SerializedName("content") private String content; /** * 外部面试 ID *

示例值:6986199832494934316 */ @SerializedName("external_interview_id") private String externalInterviewId; // builder 开始 public ExternalInterviewAssessment() { } public ExternalInterviewAssessment(Builder builder) { /** * 外部面评 ID *

示例值:6989181065243969836 */ this.id = builder.id; /** * 外部系统面评主键(仅用于幂等) *

示例值:123 */ this.externalId = builder.externalId; /** * 面试官姓名 *

示例值:shaojiale */ this.username = builder.username; /** * 面试结果 *

示例值:1 */ this.conclusion = builder.conclusion; /** * 评价维度列表 *

示例值: */ this.assessmentDimensionList = builder.assessmentDimensionList; /** * 综合记录 *

示例值:hello world */ this.content = builder.content; /** * 外部面试 ID *

示例值:6986199832494934316 */ this.externalInterviewId = builder.externalInterviewId; } public static Builder newBuilder() { return new Builder(); } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getExternalId() { return this.externalId; } public void setExternalId(String externalId) { this.externalId = externalId; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public Integer getConclusion() { return this.conclusion; } public void setConclusion(Integer conclusion) { this.conclusion = conclusion; } public ExternalInterviewAssessmentDimension[] getAssessmentDimensionList() { return this.assessmentDimensionList; } public void setAssessmentDimensionList(ExternalInterviewAssessmentDimension[] assessmentDimensionList) { this.assessmentDimensionList = assessmentDimensionList; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public String getExternalInterviewId() { return this.externalInterviewId; } public void setExternalInterviewId(String externalInterviewId) { this.externalInterviewId = externalInterviewId; } public static class Builder { /** * 外部面评 ID *

示例值:6989181065243969836 */ private String id; /** * 外部系统面评主键(仅用于幂等) *

示例值:123 */ private String externalId; /** * 面试官姓名 *

示例值:shaojiale */ private String username; /** * 面试结果 *

示例值:1 */ private Integer conclusion; /** * 评价维度列表 *

示例值: */ private ExternalInterviewAssessmentDimension[] assessmentDimensionList; /** * 综合记录 *

示例值:hello world */ private String content; /** * 外部面试 ID *

示例值:6986199832494934316 */ private String externalInterviewId; /** * 外部面评 ID *

示例值:6989181065243969836 * * @param id * @return */ public Builder id(String id) { this.id = id; return this; } /** * 外部系统面评主键(仅用于幂等) *

示例值:123 * * @param externalId * @return */ public Builder externalId(String externalId) { this.externalId = externalId; return this; } /** * 面试官姓名 *

示例值:shaojiale * * @param username * @return */ public Builder username(String username) { this.username = username; return this; } /** * 面试结果 *

示例值:1 * * @param conclusion * @return */ public Builder conclusion(Integer conclusion) { this.conclusion = conclusion; return this; } /** * 评价维度列表 *

示例值: * * @param assessmentDimensionList * @return */ public Builder assessmentDimensionList(ExternalInterviewAssessmentDimension[] assessmentDimensionList) { this.assessmentDimensionList = assessmentDimensionList; return this; } /** * 综合记录 *

示例值:hello world * * @param content * @return */ public Builder content(String content) { this.content = content; return this; } /** * 外部面试 ID *

示例值:6986199832494934316 * * @param externalInterviewId * @return */ public Builder externalInterviewId(String externalInterviewId) { this.externalInterviewId = externalInterviewId; return this; } public ExternalInterviewAssessment build() { return new ExternalInterviewAssessment(this); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy