Inherits Function.
Returns information about a tg:// deep link. Use "tg://need_update_for_some_feature" or "tg:some_unsupported_feature" for testing. Returns a 404 error for unknown links. Can be called before authorization.
Returns object_ptr<DeepLinkInfo>.
Public Fields | |
string | link_ |
The link. | |
Public Types | |
using | ReturnType = object_ptr< deepLinkInfo > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getDeepLinkInfo () | |
getDeepLinkInfo (string const &link_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 680673150 |
Identifier uniquely determining a type of the object. | |
getDeepLinkInfo | ( | ) |
Default constructor for a function, which returns information about a tg:// deep link. Use "tg://need_update_for_some_feature" or "tg:some_unsupported_feature" for testing. Returns a 404 error for unknown links. Can be called before authorization.
Returns object_ptr<DeepLinkInfo>.
|
explicit |
Creates a function, which returns information about a tg:// deep link. Use "tg://need_update_for_some_feature" or "tg:some_unsupported_feature" for testing. Returns a 404 error for unknown links. Can be called before authorization.
Returns object_ptr<DeepLinkInfo>.
[in] | link_ | The link. |
|
finalvirtual |