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

com.antgroup.antchain.openapi.twc.models.ReplyDetailInfo Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;

import com.aliyun.tea.*;

public class ReplyDetailInfo extends TeaModel {
    // 回复人名称
    @NameInMap("replier_name")
    @Validation(required = true)
    public String replierName;

    // 回复人角色 用户:USER 商家:MERCHANT 系统:SYSTEM 审核小二:AUDITOR 政府单位:GOVERNMENT
    @NameInMap("replier_role")
    @Validation(required = true)
    public String replierRole;

    // 回复时间
    // 
    @NameInMap("gmt_create")
    @Validation(required = true)
    public String gmtCreate;

    // 回复内容
    @NameInMap("content")
    @Validation(required = true)
    public String content;

    // 回复图片
    @NameInMap("images")
    @Validation(required = true)
    public java.util.List images;

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

    public ReplyDetailInfo setReplierName(String replierName) {
        this.replierName = replierName;
        return this;
    }
    public String getReplierName() {
        return this.replierName;
    }

    public ReplyDetailInfo setReplierRole(String replierRole) {
        this.replierRole = replierRole;
        return this;
    }
    public String getReplierRole() {
        return this.replierRole;
    }

    public ReplyDetailInfo setGmtCreate(String gmtCreate) {
        this.gmtCreate = gmtCreate;
        return this;
    }
    public String getGmtCreate() {
        return this.gmtCreate;
    }

    public ReplyDetailInfo setContent(String content) {
        this.content = content;
        return this;
    }
    public String getContent() {
        return this.content;
    }

    public ReplyDetailInfo setImages(java.util.List images) {
        this.images = images;
        return this;
    }
    public java.util.List getImages() {
        return this.images;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy