import { Capability } from '../enums'; export interface ListNumbersResponse { /** The object type. Will always be list of numbers, associated application keys and capabilities */ numbers?: NumberInformation[]; } export interface NumberInformation { /** Numbers that you own in E.164 format. */ number?: string; /** Indicates the application where the number(s) will be assigned. If no number is assigned the applicationkey will not be returned. */ applicationkey?: string; /** indicates the DID capability that needs to be assigned to the chosen application. Valid values are 'voice' and 'sms'. Please note that the DID needs to support the selected capability. */ capability?: Capability; }