com.sinch.sdk.domains.verification.VerificationService 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.verification;
/**
* Verification Domain Level Service
*
* @see https://developers.sinch.com/docs/verification
* @since 1.0
*/
public interface VerificationService {
/**
* Verifications Service V1
*
* @return V1 service instance for project
* @see Documentation
* @since 1.1
*/
com.sinch.sdk.domains.verification.api.v1.VerificationService v1();
/**
* Non versioned Verifications Service instance
*
* @apiNote This version is no longer updated, to get updates use V1 version: {@link
* com.sinch.sdk.domains.verification.api.v1.VerificationService#verificationStart()} or
* {@link com.sinch.sdk.domains.verification.api.v1.VerificationService#verificationReport()}
* @return service instance for project
* @see Documentation
* @since 1.0
*/
VerificationsService verifications();
/**
* Non versioned Status Service instance
*
* @apiNote This version is no longer updated, to get updates use V1 version: {@link
* com.sinch.sdk.domains.verification.api.v1.VerificationService#verificationStatus()}
* @return service instance for project
* @see Documentation
* @since 1.0
*/
VerificationStatusService verificationStatus();
/**
* Non versioned Webhooks helpers instance
*
* @apiNote This version is no longer updated, to get updates use V1 version: {@link
* com.sinch.sdk.domains.verification.api.v1.VerificationService#webhooks()}
* @return instance service related to webhooks helpers
* @see Documentation
* @since 1.0
*/
WebHooksService webhooks();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy