/* * Copyright (c) 2018. Ernesto Castellotti * This file is part of JTdlib. * * JTdlib is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License. * * JTdlib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with JTdlib. If not, see . */ package it.tdlight.tdlight; import it.tdlight.tdnatives.TdApi.Object; /** * A response to a request, or an incoming update from TDLib. */ public class Response { private long id; private Object object; /** * Creates a response with eventId and object, do not create answers explicitly! you must receive the reply through a client. * @param id TDLib request identifier, which corresponds to the response or 0 for incoming updates from TDLib. * @param object TDLib API object representing a response to a TDLib request or an incoming update. */ public Response(long id, Object object) { this.id = id; this.object = object; } /** * Get TDLib request identifier. * @return TDLib request identifier, which corresponds to the response or 0 for incoming updates from TDLib. */ public long getId() { return this.id; } /** * Get TDLib API object. * @return TDLib API object representing a response to a TDLib request or an incoming update. */ public Object getObject() { return this.object; } }