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

com.larksuite.oapi.service.contact.v3.model.CustomAttrOptions Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.0.18-rc8
Show newest version
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.contact.v3.model;
import com.google.gson.annotations.SerializedName;

public class CustomAttrOptions {
    @SerializedName("default_option_id")
    private String defaultOptionId;
    @SerializedName("option_type")
    private String optionType;
    @SerializedName("options")
    private CustomAttrOption[] options;

    public String getDefaultOptionId() {
        return this.defaultOptionId;
    }

    public void setDefaultOptionId(String defaultOptionId) {
        this.defaultOptionId = defaultOptionId;
    }

    public String getOptionType() {
        return this.optionType;
    }

    public void setOptionType(String optionType) {
        this.optionType = optionType;
    }

    public CustomAttrOption[] getOptions() {
        return this.options;
    }

    public void setOptions(CustomAttrOption[] options) {
        this.options = options;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy