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

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

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

import com.alibaba.dashscope.common.Role;
import com.google.gson.JsonObject;
import lombok.Data;

@Data
public class AttachmentRoleMessageParam extends MessageParamBase {

  public JsonObject meta;

  public AttachmentRoleMessageParam(JsonObject meta) {
    super(Role.ATTACHMENT.getValue());
    this.meta = meta;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy