Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
messagestatus.php
1<?php
3
5
6class MessageStatus extends Result
7{
8 protected $id;
9 protected $externalId;
10
11 protected $statusCode;
12 protected $statusText;
13
18 public function setId($id)
19 {
20 $this->id = (string)$id;
21 return $this;
22 }
23
27 public function getId()
28 {
29 return $this->id;
30 }
31
36 public function setExternalId($externalId)
37 {
38 $this->externalId = (string)$externalId;
39 return $this;
40 }
41
45 public function getExternalId()
46 {
47 return $this->externalId;
48 }
49
54 public function setStatusCode($statusCode)
55 {
56 $this->statusCode = $statusCode;
57 return $this;
58 }
59
63 public function getStatusCode()
64 {
65 return $this->statusCode;
66 }
67
72 public function setStatusText($statusText)
73 {
74 $this->statusText = (string)$statusText;
75 return $this;
76 }
77
81 public function getStatusText()
82 {
83 return $this->statusText;
84 }
85}