UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

18 lines 473 B
/** 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