19 lines
		
	
	
		
			346 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			346 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
//
 | 
						|
//  ServerChatMessage.swift
 | 
						|
//  SodaLive
 | 
						|
//
 | 
						|
//  Created by klaus on 9/2/25.
 | 
						|
//
 | 
						|
 | 
						|
struct ServerChatMessage: Decodable {
 | 
						|
    let messageId: Int64
 | 
						|
    let message: String
 | 
						|
    let profileImageUrl: String
 | 
						|
    let mine: Bool
 | 
						|
    let createdAt: Int64
 | 
						|
    let messageType: String
 | 
						|
    let imageUrl: String?
 | 
						|
    let price: Int?
 | 
						|
    let hasAccess: Bool
 | 
						|
}
 |