package com.kwan.springbootkwan.entity.openai; import com.google.gson.annotations.SerializedName; public enum AzureAIRole { @SerializedName("assistant") ASSISTANT("assistant"), @SerializedName("system") SYSTEM("system"), @SerializedName("user") USER("user"), ; private final String text; private AzureAIRole(final String text) { this.text = text; } @Override public String toString() { return text; } }