import { ProductType } from '../../enums/product.js'; import { Type } from '../../enums/type.js'; /** * Represents a request to redact a specific message. */ interface TransactionRequest { /** * The transaction ID to redact. */ id: string; /** * Product name that the ID provided relates to. * Must be one of: sms, voice, number-insight, verify, verify-sdk, messages. */ product: ProductType; /** * Required if redacting SMS data. Must be one of: inbound, outbound. */ type: Type; } export type { TransactionRequest };