com.sinch.sdk.domains.conversation.api.templates.TemplatesService 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.conversation.api.templates;
import com.sinch.sdk.domains.conversation.api.templates.v1.TemplatesServiceV1;
import com.sinch.sdk.domains.conversation.api.templates.v2.TemplatesServiceV2;
/**
* Service for working with Conversation templates
*
* @see online
* documentation
* @since 1.3
*/
public interface TemplatesService {
/**
* Service for working with templates V1
*
* @return Templates V1 service
* @since 1.3
*/
TemplatesServiceV1 v1();
/**
* Service for working with templates V2
*
* @return Templates V2 service
* @since 1.3
*/
TemplatesServiceV2 v2();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy