Type Alias SignalingNotifyConnectionCreated

SignalingNotifyConnectionCreated: {
    audio?: boolean;
    authn_metadata?: JSONType;
    authz_metadata?: JSONType;
    channel_connections: number;
    channel_recvonly_connections: number;
    channel_sendonly_connections: number;
    channel_sendrecv_connections: number;
    client_id?: string;
    connection_id?: string;
    data?: SignalingNotifyMetadata[];
    event_type: "connection.created";
    metadata?: JSONType;
    metadata_list?: SignalingNotifyMetadata[];
    minutes: number;
    role: Role;
    turn_transport_type: "udp" | "tcp";
    type: typeof SIGNALING_MESSAGE_TYPE_NOTIFY;
    video?: boolean;
}