13 lines
		
	
	
		
			237 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			237 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
//
 | 
						|
//  SendChatMessageResponse.swift
 | 
						|
//  SodaLive
 | 
						|
//
 | 
						|
//  Created by klaus on 9/2/25.
 | 
						|
//
 | 
						|
 | 
						|
struct SendChatMessageResponse: Decodable {
 | 
						|
    let messages: [ServerChatMessage]
 | 
						|
    let totalRemaining: Int
 | 
						|
    let nextRechargeAtEpoch: Int64?
 | 
						|
}
 |