Added Encrypted channels and communication methods
This commit is contained in:
parent
b380df95fe
commit
0e08bef3bc
10 changed files with 1066 additions and 0 deletions
12
src/Socialbox/Enums/Status/EncryptionChannelState.php
Normal file
12
src/Socialbox/Enums/Status/EncryptionChannelState.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
namespace Socialbox\Enums\Status;
|
||||
|
||||
enum EncryptionChannelState : string
|
||||
{
|
||||
case AWAITING_RECEIVER = 'AWAITING_RECEIVER';
|
||||
case ERROR = 'ERROR';
|
||||
case DECLINED = 'DECLINED';
|
||||
case OPENED = 'OPENED';
|
||||
case CLOSED = 'CLOSED';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue