mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			404 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			404 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * New conversation message object
 | 
						|
 * 
 | 
						|
 * @author Pierre HUBERT
 | 
						|
 */
 | 
						|
 | 
						|
class NewConversationMessage extends ConversationMessage {
 | 
						|
 | 
						|
	//Private fields
 | 
						|
	private $conversationID;
 | 
						|
 | 
						|
	//Get and set conversation ID
 | 
						|
	public function set_conversationID(int $conversationID){
 | 
						|
		$this->conversationID = $conversationID;
 | 
						|
	}
 | 
						|
 | 
						|
	public function get_conversationID() : int {
 | 
						|
		return $this->conversationID;
 | 
						|
	}
 | 
						|
 | 
						|
} |