Raw.InputBusinessRecipients
Specifies the chats that can receive telegram business away and greeting messages.
inputBusinessRecipients#6f8b32aa flags:# existing_chats:flags.0?true new_chats:flags.1?true contacts:flags.2?true non_contacts:flags.3?true exclude_selected:flags.5?true users:flags.4?Vector<InputUser> = InputBusinessRecipients;
export namespace Raw {
export class InputBusinessRecipients {
constructor(params: {
existingChats?: boolean;
newChats?: boolean;
contacts?: boolean;
nonContacts?: boolean;
excludeSelected?: boolean;
users?: Array<Raw.TypeInputUser>;
}) {}
}
}
🚫
This is a types constructor, you can’t use it as method when call invoke.
Layer: 185
Constructor ID: 0x6f8b32aa
Property
existingChats
: boolean or undefinedAll existing private chats.
newChats
: boolean or undefinedAll new private chats.
contacts
: boolean or undefinedAll private chats with contacts.
nonContacts
: boolean or undefinedAll private chats with non-contacts.
excludeSelected
: boolean or undefinedIf set, inverts the selection.
users
: Array of Raw.TypeInputUser or undefinedOnly private chats with the specified users.