UNPKG

@types/facebook-nodejs-business-sdk

Version:
19 lines (18 loc) 663 B
import { AbstractCrudObject } from "./../abstract-crud-object"; /** * LiveVideoInputStream * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class LiveVideoInputStream extends AbstractCrudObject { static get Fields(): Readonly<{ dash_ingest_url: "dash_ingest_url"; dash_preview_url: "dash_preview_url"; id: "id"; is_master: "is_master"; secure_stream_url: "secure_stream_url"; stream_health: "stream_health"; stream_id: "stream_id"; stream_url: "stream_url"; }>; get(fields: string[], params?: Record<string, any>): Promise<LiveVideoInputStream>; }