/** * Bandwidth * Bandwidth\'s Communication APIs * * The version of the OpenAPI document: 1.0.0 * Contact: letstalk@bandwidth.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TfvStatusEnum } from './tfv-status-enum'; import type { TfvSubmissionInfo } from './tfv-submission-info'; export interface TfvStatus { /** * Toll-free telephone number in E.164 format. */ 'phoneNumber'?: string; 'status'?: TfvStatusEnum; /** * Unique identifier (UUID) generated by Bandwidth to assist in tracking the verification status of a toll-free number - included in all webhook payloads. */ 'internalTicketNumber'?: string; /** * Explanation for why a verification request was declined. */ 'declineReasonDescription'?: string; /** * Whether a Toll-Free Verification request qualifies for resubmission via PUT. */ 'resubmitAllowed'?: boolean; /** * Date and time the verification request was created. */ 'createdDateTime'?: string; /** * Date and time the verification request was last modified. */ 'modifiedDateTime'?: string; 'submission'?: TfvSubmissionInfo; /** * Whether a Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. */ 'blocked'?: boolean; /** * The reason why the Toll-Free Verification is blocked. This attribute will only be defined when the number is blocked. */ 'blockedReason'?: string; /** * The token provided by Campaign Verify to validate your political use case. Only required for 527 political organizations. If you are not a 527 political organization, this field should be omitted. Supplying an empty string will likely result in rejection. */ 'cvToken'?: string | null; }