Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.34 KB

File metadata and controls

30 lines (23 loc) · 1.34 KB

BlockedWebhook

Properties

Name Type Description Notes
accountId string User's account ID. [optional] [default to undefined]
phoneNumber string Toll-free telephone number in E.164 format. [optional] [default to undefined]
status TfvCallbackStatusEnum [optional] [default to undefined]
internalTicketNumber string Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number. [optional] [default to undefined]
blocked boolean Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. [optional] [default to undefined]
blockedReason string The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. [optional] [default to undefined]

Example

import { BlockedWebhook } from 'bandwidth-sdk';

const instance: BlockedWebhook = {
    accountId,
    phoneNumber,
    status,
    internalTicketNumber,
    blocked,
    blockedReason,
};

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