1
0
Fork 0
mirror of synced 2025-04-03 21:23:35 +03:00

Fixed url deserialization in getFileById() method

This commit is contained in:
Max Baranikov 2023-04-26 22:13:32 +04:00
parent 90182f9389
commit 50af31b04d

View file

@ -10,6 +10,7 @@
namespace RetailCrm\Mg\Bot\Model\Response;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Accessor;
use JMS\Serializer\Annotation\SkipWhenEmpty;
use JMS\Serializer\Annotation\Type;
@ -55,6 +56,7 @@ class FullFileResponse implements ModelInterface
* @var string $url
*
* @Type("string")
* @SerializedName("Url")
* @Accessor(getter="getUrl",setter="setUrl")
* @SkipWhenEmpty()
*/