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

com.aliyun.linkedmall20230930.models.LeavePictureList Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.linkedmall20230930.models;

import com.aliyun.tea.*;

public class LeavePictureList extends TeaModel {
    @NameInMap("desc")
    public String desc;

    @NameInMap("picture")
    public String picture;

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

    public LeavePictureList setDesc(String desc) {
        this.desc = desc;
        return this;
    }
    public String getDesc() {
        return this.desc;
    }

    public LeavePictureList setPicture(String picture) {
        this.picture = picture;
        return this;
    }
    public String getPicture() {
        return this.picture;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy