Skip to content

Commit

Permalink
docs (Voice): javadoc update
Browse files Browse the repository at this point in the history
  • Loading branch information
JPPortier committed Oct 16, 2024
1 parent 9c63184 commit 154859a
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
package com.sinch.sdk.domains.voice.models.v1.calls.response;

/**
* Class related to a <code>From</code> destination for {@link CallInformation#getFrom()}
*
* @see com.sinch.sdk.domains.voice.api.v1.CallsService#get(String)
* @since 1.4
*/
public interface CallInformationFrom {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
package com.sinch.sdk.domains.voice.models.v1.calls.response;

/**
* Class related to a <code>To</code> destination for {@link CallInformation#getTo()}
*
* @see com.sinch.sdk.domains.voice.api.v1.CallsService#get(String)
* @since 1.4
*/
public interface CallInformationTo {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
package com.sinch.sdk.domains.voice.models.v1.destination;

/**
* Base class related to a <code>Destination</code>
*
* @since 1.4
*/
public interface Destination {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
package com.sinch.sdk.domains.voice.models.v1.destination;

import com.sinch.sdk.domains.voice.models.v1.callouts.request.CalloutRequestConference;

/**
* Base class related to a <code>Conference</code> call destination
*
* @see com.sinch.sdk.domains.voice.api.v1.CalloutsService#conference(CalloutRequestConference)
* @since 1.4
*/
public interface DestinationConference {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
package com.sinch.sdk.domains.voice.models.v1.destination;

import com.sinch.sdk.domains.voice.models.v1.callouts.request.CalloutRequestCustom;

/**
* Base class related to a <code>Custom</code> call destination
*
* @see com.sinch.sdk.domains.voice.api.v1.CalloutsService#custom(CalloutRequestCustom)
* @since 1.4
*/
public interface DestinationCustom {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
package com.sinch.sdk.domains.voice.models.v1.destination;

import com.sinch.sdk.domains.voice.models.v1.callouts.request.CalloutRequestTTS;

/**
* Base class related to a <code>Text To Speech</code> call destination
*
* @see com.sinch.sdk.domains.voice.api.v1.CalloutsService#textToSpeech(CalloutRequestTTS)
* @since 1.4
*/
public interface DestinationTextToSpeech {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Destination related classes
*
* @since 1.4
*/
package com.sinch.sdk.domains.voice.models.v1.destination;

0 comments on commit 154859a

Please sign in to comment.