Package org.drinkless.tdlib
Class TdApi.ImportedContact
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.ImportedContact
- Enclosing class:
- TdApi
Describes a contact to import.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.First name of the user; 1-64 characters.Last name of the user; 0-64 characters.Note to add about the user; 0-getOption("user_note_text_length_max") characters.Phone number of the user. -
Constructor Summary
ConstructorsConstructorDescriptionDescribes a contact to import.ImportedContact(String phoneNumber, String firstName, String lastName, TdApi.FormattedText note) Describes a contact to import. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
phoneNumber
Phone number of the user. -
firstName
First name of the user; 1-64 characters. -
lastName
Last name of the user; 0-64 characters. -
note
Note to add about the user; 0-getOption("user_note_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, and CustomEmoji entities are allowed; pass null to keep the current user's note. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
ImportedContact
public ImportedContact()Describes a contact to import. -
ImportedContact
public ImportedContact(String phoneNumber, String firstName, String lastName, TdApi.FormattedText note) Describes a contact to import.- Parameters:
phoneNumber- Phone number of the user.firstName- First name of the user; 1-64 characters.lastName- Last name of the user; 0-64 characters.note- Note to add about the user; 0-getOption("user_note_text_length_max") characters. Only Bold, Italic, Underline, Strikethrough, Spoiler, and CustomEmoji entities are allowed; pass null to keep the current user's note.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-