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

com.larksuite.oapi.service.search.v2.model.ConnectDataSource 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.search.v2.model;
import com.google.gson.annotations.SerializedName;

public class ConnectDataSource {
    @SerializedName("service_url")
    private String serviceUrl;
    @SerializedName("project_name")
    private String projectName;
    @SerializedName("display_name")
    private String displayName;
    @SerializedName("description")
    private String description;
    @SerializedName("icon_url")
    private String iconUrl;
    @SerializedName("project_description")
    private String projectDescription;
    @SerializedName("contact_email")
    private String contactEmail;
    @SerializedName("tenant_name")
    private String tenantName;

    public String getServiceUrl() {
        return this.serviceUrl;
    }

    public void setServiceUrl(String serviceUrl) {
        this.serviceUrl = serviceUrl;
    }

    public String getProjectName() {
        return this.projectName;
    }

    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }

    public String getDisplayName() {
        return this.displayName;
    }

    public void setDisplayName(String displayName) {
        this.displayName = displayName;
    }

    public String getDescription() {
        return this.description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getIconUrl() {
        return this.iconUrl;
    }

    public void setIconUrl(String iconUrl) {
        this.iconUrl = iconUrl;
    }

    public String getProjectDescription() {
        return this.projectDescription;
    }

    public void setProjectDescription(String projectDescription) {
        this.projectDescription = projectDescription;
    }

    public String getContactEmail() {
        return this.contactEmail;
    }

    public void setContactEmail(String contactEmail) {
        this.contactEmail = contactEmail;
    }

    public String getTenantName() {
        return this.tenantName;
    }

    public void setTenantName(String tenantName) {
        this.tenantName = tenantName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy