Skip to content

Commit 0e2492a

Browse files
committed
fix: 메시징 포맷 방식을 변경
1 parent e144ec1 commit 0e2492a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ProjectVG.Application/Models/Chat/IntegratedChatMessage.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ public class IntegratedChatMessage
77
[JsonPropertyName("type")]
88
public string Type { get; set; } = "chat";
99

10-
[JsonPropertyName("messageType")]
10+
[JsonPropertyName("message_type")]
1111
public string MessageType { get; set; } = "json";
1212

13-
[JsonPropertyName("sessionId")]
13+
[JsonPropertyName("session_id")]
1414
public string SessionId { get; set; } = string.Empty;
1515

1616
[JsonPropertyName("text")]
1717
public string? Text { get; set; }
1818

19-
[JsonPropertyName("audioData")]
19+
[JsonPropertyName("audio_data")]
2020
public string? AudioData { get; set; } // Base64 인코딩된 오디오 데이터
2121

22-
[JsonPropertyName("audioFormat")]
22+
[JsonPropertyName("audio_format")]
2323
public string? AudioFormat { get; set; } = "wav";
2424

25-
[JsonPropertyName("audioLength")]
25+
[JsonPropertyName("audio_length")]
2626
public float? AudioLength { get; set; }
2727

2828
[JsonPropertyName("timestamp")]

0 commit comments

Comments
 (0)