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

com.larksuite.oapi.service.im.v1.model.I18nNames 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.im.v1.model;
import com.google.gson.annotations.SerializedName;

public class I18nNames {
    @SerializedName("zh_cn")
    private String zhCn;
    @SerializedName("en_us")
    private String enUs;
    @SerializedName("ja_jp")
    private String jaJp;

    public String getZhCn() {
        return this.zhCn;
    }

    public void setZhCn(String zhCn) {
        this.zhCn = zhCn;
    }

    public String getEnUs() {
        return this.enUs;
    }

    public void setEnUs(String enUs) {
        this.enUs = enUs;
    }

    public String getJaJp() {
        return this.jaJp;
    }

    public void setJaJp(String jaJp) {
        this.jaJp = jaJp;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy