oneOnOneId
Use this helper method to predictably compute a Conversation ID based on participants' ids in the given conversation. Use this method if you want to simply create a conversation between two users, not related to a particular product, order or transaction. The order of the parameters does not matter.
1oneOnOneId(me: User | string, other: User | string): string
string
1import * as TalkRn from '@talkjs/react-native';23const me: TalkRn.User = {4 id: '123456789',5 name: 'Alice',7 photoUrl: 'https://talkjs.com/images/avatar-1.jpg',8 welcomeMessage: 'Hey there! How are you? :-)',9};1011const other: TalkRn.User = {12 id: '432156789',13 name: 'Sebastian',15 photoUrl: 'https://talkjs.com/images/avatar-5.jpg',16 welcomeMessage: 'Hey, how can I help? https://google.com',17};1819const conversationId = TalkRn.oneOnOneId(other.id, me.id);