com.sinch.sdk.domains.voice.VoiceService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sinch-sdk-java Show documentation
Show all versions of sinch-sdk-java Show documentation
SDK providing a Java API for the Sinch REST APIs.
package com.sinch.sdk.domains.voice;
/**
* Voice service
*
* @see https://developers.sinch.com/docs/voice/
* @since 1.0
*/
public interface VoiceService {
/**
* Callouts Service instance
*
* @return service instance for project
* @since 1.0
*/
CalloutsService callouts();
/**
* Conference Service instance
*
* @return service instance for project
* @since 1.0
*/
ConferencesService conferences();
/**
* Calls Service instance
*
* @return service instance for project
* @since 1.0
*/
CallsService calls();
/**
* Applications Service instance
*
* @return service instance for project
* @since 1.0
*/
ApplicationsService applications();
/**
* Webhooks helpers instance
*
* @return instance service related to webhooks helpers
* @since 1.0
*/
WebHooksService webhooks();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy