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

com.alibaba.dashscope.aigc.codegeneration.models.OtherRoleMetaMessageParam Maven / Gradle / Ivy

The newest version!
package com.alibaba.dashscope.aigc.codegeneration.models;

import com.google.gson.JsonObject;
import lombok.Data;

@Data
public class OtherRoleMetaMessageParam extends MessageParamBase {

  public JsonObject meta;

  public OtherRoleMetaMessageParam(String role, JsonObject meta) {
    super(role);
    this.meta = meta;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy