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

com.dingtalk.baymax.framework.sdk.mercury.domain.ChatMessage Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.dingtalk.baymax.framework.sdk.mercury.domain;

public class ChatMessage extends BaseMessage {

    private String role;

    @Override
    public String getType() {
        return "chat";
    }

    public String getRole() {
        return role;
    }

    public void setRole(String role) {
        this.role = role;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy