interface IInteractions {
    onComplete(input): void;
    send(input): Promise<InteractionsResponse>;
}

Methods