-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from sinch/verification-2-0-1-javadoc
Verification 2 0 1 javadoc
- Loading branch information
Showing
64 changed files
with
520 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
client/src/main/com/sinch/sdk/domains/verification/api/v1/VerificationService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,51 @@ | ||
package com.sinch.sdk.domains.verification.api.v1; | ||
|
||
/** | ||
* Verification Domain Level Service | ||
* | ||
* @see <a | ||
* href="https://developers.sinch.com/docs/verification">https://developers.sinch.com/docs/verification</a> | ||
* @since 1.1 | ||
*/ | ||
public interface VerificationService { | ||
|
||
/** | ||
* Verifications Start Service instance | ||
* | ||
* @return service instance for project | ||
* @see <a | ||
* href="https://developers.sinch.com/docs/verification/api-reference/verification/tag/Verifications">Documentation</a> | ||
* @since 1.1 | ||
*/ | ||
VerificationStartService verificationStart(); | ||
|
||
/** | ||
* Verifications Report Service instance | ||
* | ||
* @return service instance for project | ||
* @see <a | ||
* href="https://developers.sinch.com/docs/verification/api-reference/verification/tag/Verifications">Documentation</a> | ||
* @since 1.1 | ||
*/ | ||
VerificationReportService verificationReport(); | ||
|
||
/** | ||
* Verifications Status Service instance | ||
* | ||
* @return service instance for project | ||
* @see <a | ||
* href="https://developers.sinch.com/docs/verification/api-reference/verification/tag/Verification-status">Documentation</a> | ||
* @since 1.1 | ||
*/ | ||
VerificationStatusService verificationStatus(); | ||
|
||
/** | ||
* Webhooks helpers instance | ||
* | ||
* @return service instance for project | ||
* @see <a | ||
* href="https://developers.sinch.com/docs/verification/api-reference/verification/tag/Verification-callbacks">Documentation</a> | ||
* @since 1.1 | ||
*/ | ||
WebHooksService webhooks(); | ||
} |
Oops, something went wrong.