UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

15 lines 449 B
import { SingleArchiveResponse } from './SingleArchiveResponse'; /** * Represents a response containing multiple archive items. */ export type MultiArchiveResponse = { /** * The count of archive items in the response. */ count: number; /** * An array of SingleArchiveResponse objects representing individual archive items. */ items: SingleArchiveResponse[]; }; //# sourceMappingURL=MultiArchiveResponse.d.ts.map