/** Sounds attached to this telephony account */
export interface Sound {
    /** Sound creation date */
    creationDate: string;
    /** Sound description */
    description?: string;
    /** Sound filename */
    filename: string;
    /** URL to get sound file */
    getUrl: string;
    /** Sound ID */
    id: number;
    /** URL to upload sound file */
    putUrl?: string;
    /** Sound file size (in bytes) */
    size: number;
}
//# sourceMappingURL=Sound.d.ts.map