HEX
Server: LiteSpeed
System: Linux srv1.dhviews.com 5.14.0-570.23.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jun 24 11:27:16 EDT 2025 x86_64
User: bdedition (1723)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/bdedition/public_html/core/vendor/messagebird/php-rest-api/src/MessageBird/Objects/Number.php
<?php

namespace MessageBird\Objects;

/**
 * Class Number
 *
 * Represents a specific phone number
 *
 * @package MessageBird\Objects
 */
class Number extends Base
{
    /**
     * The phone number in E.164 format without the prefixed plus-sign.
     * @var string
     */
    public $number;

    /**
     * The Number's country
     * @var string
     */
    public $country;

    /**
     * The country code for this number in ISO 3166-1 alpha-2 format.
     * @var string
     */
    public $region;

    /**
     * Finer-grained locality for this Number
     * @var string
     */
    public $locality;

    /**
     * The available features for this Number
     * @var array
     */
    public $features;

    /**
     * Additional user-provided tags for this Number
     * @var array
     */
    public $tags = [];

    /**
     * Number type (example: landline, mobile).
     * @var string
     */
    public $type;

    /**
     * Number availability and current activated status
     * @var string
     */
    public $status;
}