Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 1.53 KB

File metadata and controls

52 lines (45 loc) · 1.53 KB

# SMSTollFreeCampaignsListResult

Properties

Name Type Description Notes
total int Total amount of requested resource. [optional]
start int Resource index at start of current page [optional]
end int Resource index at end of current page [optional]
page int Current page [optional]
num_pages int Total number of pages [optional]
page_size int Number of items per page [optional]
next_page_uri string Uri to retrieve the next page of items [optional]
brands \FreeClimb\Api\Model\SMSTollFreeCampaign[] [optional]

Example

<?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
);

[Back to Model list] [Back to API list] [Back to README]