/** * Details about user info from rtmp ingest. * @export * @class RtmpUserIngestInfo */ export declare class RtmpUserIngestInfo { /** * Client public IP address. * @type {string} * @memberof RtmpUserIngestInfo */ address?: string; /** * RTMP application name. * @type {string} * @memberof RtmpUserIngestInfo */ app?: string; /** * Client stream key. * @type {string} * @memberof RtmpUserIngestInfo */ streamKey?: string; /** * Flash version string / encoder identity. * @type {string} * @memberof RtmpUserIngestInfo */ flashVersion?: string; /** * Session/client connection ID. * @type {string} * @memberof RtmpUserIngestInfo */ clientId?: string; /** * Server action. * @type {string} * @memberof RtmpUserIngestInfo */ eventType?: string; constructor(obj?: Partial); } export default RtmpUserIngestInfo;