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

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

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

The newest version!
// 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 InterviewFeedbackFormDimension {
    /**
     * 模块维度ID
     * 

示例值:6930815272790114324 */ @SerializedName("id") private String id; /** * 维度名称 *

示例值: */ @SerializedName("name") private I18n name; /** * 维度描述 *

示例值: */ @SerializedName("description") private I18n description; /** * 维度类型 *

示例值:1 */ @SerializedName("type") private Integer type; /** * 是否启用 *

示例值:true */ @SerializedName("enabled") private Boolean enabled; /** * 维度顺序 *

示例值:1 */ @SerializedName("sequence") private Integer sequence; /** * 是否必选 *

示例值:true */ @SerializedName("is_required") private Boolean isRequired; /** * 维度权重 *

示例值:1 */ @SerializedName("weight") private Double weight; /** * 评价维度的分数配置(适用于打分题) *

示例值: */ @SerializedName("score_dimension_config") private ScoreDimensionConfig scoreDimensionConfig; /** * 选项列表(适用于单选题和多选题) *

示例值: */ @SerializedName("option_items") private InterviewDimensionOption[] optionItems; /** * 是否展示「无法判断」选项,仅针对「职级建议」的维度类型 *

示例值:true */ @SerializedName("display_not_evident") private Boolean displayNotEvident; /** * 能力项列表 *

示例值: */ @SerializedName("ability_list") private DimensionAbility[] abilityList; // builder 开始 public InterviewFeedbackFormDimension() { } public InterviewFeedbackFormDimension(Builder builder) { /** * 模块维度ID *

示例值:6930815272790114324 */ this.id = builder.id; /** * 维度名称 *

示例值: */ this.name = builder.name; /** * 维度描述 *

示例值: */ this.description = builder.description; /** * 维度类型 *

示例值:1 */ this.type = builder.type; /** * 是否启用 *

示例值:true */ this.enabled = builder.enabled; /** * 维度顺序 *

示例值:1 */ this.sequence = builder.sequence; /** * 是否必选 *

示例值:true */ this.isRequired = builder.isRequired; /** * 维度权重 *

示例值:1 */ this.weight = builder.weight; /** * 评价维度的分数配置(适用于打分题) *

示例值: */ this.scoreDimensionConfig = builder.scoreDimensionConfig; /** * 选项列表(适用于单选题和多选题) *

示例值: */ this.optionItems = builder.optionItems; /** * 是否展示「无法判断」选项,仅针对「职级建议」的维度类型 *

示例值:true */ this.displayNotEvident = builder.displayNotEvident; /** * 能力项列表 *

示例值: */ this.abilityList = builder.abilityList; } public static Builder newBuilder() { return new Builder(); } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public I18n getName() { return this.name; } public void setName(I18n name) { this.name = name; } public I18n getDescription() { return this.description; } public void setDescription(I18n description) { this.description = description; } public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public Boolean getEnabled() { return this.enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } public Integer getSequence() { return this.sequence; } public void setSequence(Integer sequence) { this.sequence = sequence; } public Boolean getIsRequired() { return this.isRequired; } public void setIsRequired(Boolean isRequired) { this.isRequired = isRequired; } public Double getWeight() { return this.weight; } public void setWeight(Double weight) { this.weight = weight; } public ScoreDimensionConfig getScoreDimensionConfig() { return this.scoreDimensionConfig; } public void setScoreDimensionConfig(ScoreDimensionConfig scoreDimensionConfig) { this.scoreDimensionConfig = scoreDimensionConfig; } public InterviewDimensionOption[] getOptionItems() { return this.optionItems; } public void setOptionItems(InterviewDimensionOption[] optionItems) { this.optionItems = optionItems; } public Boolean getDisplayNotEvident() { return this.displayNotEvident; } public void setDisplayNotEvident(Boolean displayNotEvident) { this.displayNotEvident = displayNotEvident; } public DimensionAbility[] getAbilityList() { return this.abilityList; } public void setAbilityList(DimensionAbility[] abilityList) { this.abilityList = abilityList; } public static class Builder { /** * 模块维度ID *

示例值:6930815272790114324 */ private String id; /** * 维度名称 *

示例值: */ private I18n name; /** * 维度描述 *

示例值: */ private I18n description; /** * 维度类型 *

示例值:1 */ private Integer type; /** * 是否启用 *

示例值:true */ private Boolean enabled; /** * 维度顺序 *

示例值:1 */ private Integer sequence; /** * 是否必选 *

示例值:true */ private Boolean isRequired; /** * 维度权重 *

示例值:1 */ private Double weight; /** * 评价维度的分数配置(适用于打分题) *

示例值: */ private ScoreDimensionConfig scoreDimensionConfig; /** * 选项列表(适用于单选题和多选题) *

示例值: */ private InterviewDimensionOption[] optionItems; /** * 是否展示「无法判断」选项,仅针对「职级建议」的维度类型 *

示例值:true */ private Boolean displayNotEvident; /** * 能力项列表 *

示例值: */ private DimensionAbility[] abilityList; /** * 模块维度ID *

示例值:6930815272790114324 * * @param id * @return */ public Builder id(String id) { this.id = id; return this; } /** * 维度名称 *

示例值: * * @param name * @return */ public Builder name(I18n name) { this.name = name; return this; } /** * 维度描述 *

示例值: * * @param description * @return */ public Builder description(I18n description) { this.description = description; return this; } /** * 维度类型 *

示例值:1 * * @param type * @return */ public Builder type(Integer type) { this.type = type; return this; } /** * 是否启用 *

示例值:true * * @param enabled * @return */ public Builder enabled(Boolean enabled) { this.enabled = enabled; return this; } /** * 维度顺序 *

示例值:1 * * @param sequence * @return */ public Builder sequence(Integer sequence) { this.sequence = sequence; return this; } /** * 是否必选 *

示例值:true * * @param isRequired * @return */ public Builder isRequired(Boolean isRequired) { this.isRequired = isRequired; return this; } /** * 维度权重 *

示例值:1 * * @param weight * @return */ public Builder weight(Double weight) { this.weight = weight; return this; } /** * 评价维度的分数配置(适用于打分题) *

示例值: * * @param scoreDimensionConfig * @return */ public Builder scoreDimensionConfig(ScoreDimensionConfig scoreDimensionConfig) { this.scoreDimensionConfig = scoreDimensionConfig; return this; } /** * 选项列表(适用于单选题和多选题) *

示例值: * * @param optionItems * @return */ public Builder optionItems(InterviewDimensionOption[] optionItems) { this.optionItems = optionItems; return this; } /** * 是否展示「无法判断」选项,仅针对「职级建议」的维度类型 *

示例值:true * * @param displayNotEvident * @return */ public Builder displayNotEvident(Boolean displayNotEvident) { this.displayNotEvident = displayNotEvident; return this; } /** * 能力项列表 *

示例值: * * @param abilityList * @return */ public Builder abilityList(DimensionAbility[] abilityList) { this.abilityList = abilityList; return this; } public InterviewFeedbackFormDimension build() { return new InterviewFeedbackFormDimension(this); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy