@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
33 lines (32 loc) • 802 B
TypeScript
import CloudRegion from './CloudRegion';
import EgressCategory from './EgressCategory';
import OutputType from './OutputType';
/**
* @export
* @class EgressInformation
*/
export declare class EgressInformation {
/**
* @type {EgressCategory}
* @memberof EgressInformation
*/
category?: EgressCategory;
/**
* The number of bytes that have been transferred to the output (required)
* @type {number}
* @memberof EgressInformation
*/
bytes?: number;
/**
* @type {OutputType}
* @memberof EgressInformation
*/
outputType?: OutputType;
/**
* @type {CloudRegion}
* @memberof EgressInformation
*/
outputRegion?: CloudRegion;
constructor(obj?: Partial<EgressInformation>);
}
export default EgressInformation;