interface Transfer {
    from: string;
    idInvite: string;
    roomId: string;
    state: "ACCEPTED" | "DECLINED" | "INVITED";
    to: string;
}

Properties

from: string

Who creates the call-transfer

idInvite: string

Identifier of the invite related with the transfer

roomId: string

Identifier of the room

state: "ACCEPTED" | "DECLINED" | "INVITED"

State of the call transfer

to: string

Who has to receive the call transferred