@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 578 B
TypeScript
import AbstractCondition from './AbstractCondition';
import WebhookNotification from './WebhookNotification';
/**
* @export
* @class WebhookNotificationWithStreamConditionsRequest
*/
export declare class WebhookNotificationWithStreamConditionsRequest extends WebhookNotification {
/**
* @type {AbstractCondition}
* @memberof WebhookNotificationWithStreamConditionsRequest
*/
conditions?: AbstractCondition;
constructor(obj?: Partial<WebhookNotificationWithStreamConditionsRequest>);
}
export default WebhookNotificationWithStreamConditionsRequest;