
org.infobip.mobile.messaging.api.chat.MobileApiChat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-mobile-messaging-api-java Show documentation
Show all versions of infobip-mobile-messaging-api-java Show documentation
Mobile Messaging SDK for Android
The newest version!
package org.infobip.mobile.messaging.api.chat;
import org.infobip.mobile.messaging.api.support.Generator;
import org.infobip.mobile.messaging.api.support.http.ApiKey;
import org.infobip.mobile.messaging.api.support.http.HttpRequest;
import org.infobip.mobile.messaging.api.support.http.Version;
import org.infobip.mobile.messaging.api.support.http.client.HttpMethod;
/**
* Chat-related mobile API.
*
* Usage:
*
{@code
* MobileApiChat mobileApiChat = new Generator.Builder().build().create(MobileApiChat.class);
* }
*
* @see Generator
* @see Generator.Builder
*/
@ApiKey("${api.key}")
@HttpRequest("/mobile/{version}/chat")
@Version("1")
public interface MobileApiChat {
@HttpRequest(method = HttpMethod.GET, value = "widget")
WidgetInfo getWidgetConfiguration();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy