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

com.aliyun.pds20220301.models.CustomSideLinkConfig Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;

import com.aliyun.tea.*;

public class CustomSideLinkConfig extends TeaModel {
    @NameInMap("icon")
    public String icon;

    @NameInMap("link")
    public String link;

    @NameInMap("text")
    public String text;

    public static CustomSideLinkConfig build(java.util.Map map) throws Exception {
        CustomSideLinkConfig self = new CustomSideLinkConfig();
        return TeaModel.build(map, self);
    }

    public CustomSideLinkConfig setIcon(String icon) {
        this.icon = icon;
        return this;
    }
    public String getIcon() {
        return this.icon;
    }

    public CustomSideLinkConfig setLink(String link) {
        this.link = link;
        return this;
    }
    public String getLink() {
        return this.link;
    }

    public CustomSideLinkConfig setText(String text) {
        this.text = text;
        return this;
    }
    public String getText() {
        return this.text;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy