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

com.antgroup.antchain.openapi.das.models.DomesticTmExtensionInfo Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.das.models;

import com.aliyun.tea.*;

public class DomesticTmExtensionInfo extends TeaModel {
    // 商标logo URL地址
    @NameInMap("tm_logo_url")
    public String tmLogoUrl;

    // 商品与服务信息列表
    @NameInMap("goods_info")
    public java.util.List goodsInfo;

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

    public DomesticTmExtensionInfo setTmLogoUrl(String tmLogoUrl) {
        this.tmLogoUrl = tmLogoUrl;
        return this;
    }
    public String getTmLogoUrl() {
        return this.tmLogoUrl;
    }

    public DomesticTmExtensionInfo setGoodsInfo(java.util.List goodsInfo) {
        this.goodsInfo = goodsInfo;
        return this;
    }
    public java.util.List getGoodsInfo() {
        return this.goodsInfo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy