Table of Contents

Struct GetArchivesResponse

Namespace
Vonage.Video.Archives.GetArchives
Assembly
Vonage.dll

Represents the response for retrieving archives.

public struct GetArchivesResponse
Inherited Members

Constructors

GetArchivesResponse(int, Archive[])

Creates a response.

[JsonConstructor]
public GetArchivesResponse(int count, Archive[] items)

Parameters

count int

The number of elements.

items Archive[]

The streams.

Properties

Count

The total number of archives for the API key.

public readonly int Count { get; }

Property Value

int

Items

An array of objects defining each archive retrieved. Archives are listed from the newest to the oldest in the return set.

public readonly Archive[] Items { get; }

Property Value

Archive[]