Describe the bug
The final class Infobip\Resources\SMS\Models\Message has a missing property named text as seen at https://www.infobip.com/docs/api/channels/sms/outbound-sms/send-sms-message
To Reproduce
Steps to reproduce the behavior:
<? php
use Infobip\InfobipClient;
use Infobip\Resources\SMS\Models\Destination;
use Infobip\Resources\SMS\Models\Message;
use Infobip\Resources\SMS\SendSMSMessageResource;
$cli = new InfobipClient(config('infobip.api_key'), config('infobip.base_url'), config('infobip.timeout'));
$resource = new SendSMSMessageResource();
$resource->addMessage((new Message())->addDestination(new Destination($this->to)));
$response = $cli->SMS()->sendSMSMessage($resource);
No method to add text, only binary is provided for.
Expected behavior
An addText() method should be added like this:
<? php
use Infobip\InfobipClient;
use Infobip\Resources\SMS\Models\Destination;
use Infobip\Resources\SMS\Models\Message;
use Infobip\Resources\SMS\SendSMSMessageResource;
$cli = new InfobipClient(config('infobip.api_key'), config('infobip.base_url'), config('infobip.timeout'));
$resource = new SendSMSMessageResource();
$resource->addMessage((new Message())->addDestination(new Destination($this->to))->addText($$this->message));
$response = $cli->SMS()->sendSMSMessage($resource);
Screenshots

Additional context
Add any other context about the problem here.
Describe the bug
The final class
Infobip\Resources\SMS\Models\Messagehas a missing property namedtextas seen at https://www.infobip.com/docs/api/channels/sms/outbound-sms/send-sms-messageTo Reproduce
Steps to reproduce the behavior:
No method to add text, only binary is provided for.
Expected behavior
An
addText()method should be added like this:Screenshots

Additional context
Add any other context about the problem here.