Package org.drinkless.tdlib
Class TdApi.Contact
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Contact
-
- Enclosing class:
- TdApi
public static class TdApi.Contact extends TdApi.Object
Describes a user contact.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringfirstNameFirst name of the user; 1-255 characters in length.StringlastNameLast name of the user.StringphoneNumberPhone number of the user.longuserIdIdentifier of the user, if known; otherwise 0.StringvcardAdditional data about the user in a form of vCard; 0-2048 bytes in length.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
phoneNumber
public String phoneNumber
Phone number of the user.
-
firstName
public String firstName
First name of the user; 1-255 characters in length.
-
lastName
public String lastName
Last name of the user.
-
vcard
public String vcard
Additional data about the user in a form of vCard; 0-2048 bytes in length.
-
userId
public long userId
Identifier of the user, if known; otherwise 0.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Contact
public Contact()
Describes a user contact.
-
Contact
public Contact(String phoneNumber, String firstName, String lastName, String vcard, long userId)
Describes a user contact.- Parameters:
phoneNumber- Phone number of the user.firstName- First name of the user; 1-255 characters in length.lastName- Last name of the user.vcard- Additional data about the user in a form of vCard; 0-2048 bytes in length.userId- Identifier of the user, if known; otherwise 0.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-