Type Alias DirectChatInput

DirectChatInput: {
    chatroom?: string;
    from: DirectChatMember;
    groupOwner?: boolean;
    id?: string;
    message: string;
    messageId?: string;
    parent?: string;
    to: DirectChatMember;
}