mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 13:59:29 +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;
|
|
}
|
|
|
|
} |