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

com.larksuite.oapi.service.contact.v3.model.CustomAttrEvent 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 CustomAttrEvent {
    @SerializedName("contact_field_key")
    private String contactFieldKey;
    @SerializedName("field_value_types")
    private String fieldValueTypes;
    @SerializedName("i18n_field_names")
    private String i18nFieldNames;
    @SerializedName("allow_open_query")
    private String allowOpenQuery;

    public String getContactFieldKey() {
        return this.contactFieldKey;
    }

    public void setContactFieldKey(String contactFieldKey) {
        this.contactFieldKey = contactFieldKey;
    }

    public String getFieldValueTypes() {
        return this.fieldValueTypes;
    }

    public void setFieldValueTypes(String fieldValueTypes) {
        this.fieldValueTypes = fieldValueTypes;
    }

    public String getI18nFieldNames() {
        return this.i18nFieldNames;
    }

    public void setI18nFieldNames(String i18nFieldNames) {
        this.i18nFieldNames = i18nFieldNames;
    }

    public String getAllowOpenQuery() {
        return this.allowOpenQuery;
    }

    public void setAllowOpenQuery(String allowOpenQuery) {
        this.allowOpenQuery = allowOpenQuery;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy