Type Alias InformationBarriersPolicyUpdatedEvent

InformationBarriersPolicyUpdatedEvent: Event<
    "information_barriers.policy_updated",
> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            assigned_group_id: string;
            policy_name: string;
            settings: {
                complete_phone_calls: boolean;
                file_transfer: boolean;
                im: boolean;
                in_meeting_chat: boolean;
                meeting: boolean;
                message_via_sms: boolean;
                recording: boolean;
                screen_share: boolean;
            };
            status: number;
            to_group_id: string;
            type: number;
        };
    };
}