Show / Hide Table of Contents

Class LiveApi

Inheritance
System.Object
LiveApi
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Encoding.Statistics.Encodings.Live
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class LiveApi

Constructors

LiveApi(IBitmovinApiClientFactory)

Declaration
public LiveApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type Name Description
IBitmovinApiClientFactory apiClientFactory

Properties

Builder

Fluent builder for creating an instance of LiveApi

Declaration
public static BitmovinApiBuilder<LiveApi> Builder { get; }
Property Value
Type Description
BitmovinApiBuilder<LiveApi>

Daily

Declaration
public DailyApi Daily { get; }
Property Value
Type Description
DailyApi

Methods

ListAsync(Func<LiveApi.ListQueryParams, LiveApi.ListQueryParams>[])

List Live Encoding Statistics

Declaration
public Task<PaginationResponse<EncodingStatisticsLive>> ListAsync(params Func<LiveApi.ListQueryParams, LiveApi.ListQueryParams>[] queryParams)
Parameters
Type Name Description
System.Func<LiveApi.ListQueryParams, LiveApi.ListQueryParams>[] queryParams

The query parameters for sorting, filtering and paging options (optional)

Returns
Type Description
System.Threading.Tasks.Task<PaginationResponse<EncodingStatisticsLive>>

ListByDateRangeAsync(Nullable<DateTime>, Nullable<DateTime>, Func<LiveApi.ListByDateRangeQueryParams, LiveApi.ListByDateRangeQueryParams>[])

List live encoding statistics within specific dates

Declaration
public Task<PaginationResponse<EncodingStatisticsLive>> ListByDateRangeAsync(DateTime? from, DateTime? to, params Func<LiveApi.ListByDateRangeQueryParams, LiveApi.ListByDateRangeQueryParams>[] queryParams)
Parameters
Type Name Description
System.Nullable<System.DateTime> from

Start date, format: yyyy-MM-dd (required)

System.Nullable<System.DateTime> to

End date, format: yyyy-MM-dd (required)

System.Func<LiveApi.ListByDateRangeQueryParams, LiveApi.ListByDateRangeQueryParams>[] queryParams

The query parameters for sorting, filtering and paging options (optional)

Returns
Type Description
System.Threading.Tasks.Task<PaginationResponse<EncodingStatisticsLive>>
Back to top Generated by DocFX