<?php
require_once(__DIR__ . '/vendor/autoload.php');
$json = <<<'JSON'
{
"total": 0,
"start": 0,
"end": 0,
"page": 0,
"numPages": 0,
"pageSize": 0,
"nextPageUri": "string",
"brands": [
{
"accountId": "string",
"campaignId": "string",
"useCase": "string",
"registrationStatus": "UNREGISTERED",
"dateCreated": "string",
"dateUpdated": "string",
"revision": 0
}
]
}
JSON;
// create an instance of SMSTollFreeCampaignsListResult from a JSON string
$sms_toll_free_campaigns_list_result = \FreeClimb\Api\ObjectSerializer::deserialize(
json_decode($json),
\FreeClimb\Api\Model\SMSTollFreeCampaignsListResult::class
);