<?php

namespace Telnyx\PhoneNumber;

/**
 * Class Messaging
 *
 * @package Telnyx
 */
class Messaging extends \Telnyx\ApiResource
{
    const OBJECT_NAME = "messaging_settings";

    use \Telnyx\ApiOperations\All;
    
    /**
     * @return string The endpoint URL for the given class.
     */
    public static function classUrl()
    {
        // NOTE: This comes from ApiResource.php, but we override this because it is an endpoint with a singular ending.
        return "/v2/phone_numbers/messaging";
    }
}