com.sinch.sdk.domains.voice.models.svaml.Action 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.models.svaml;
/** Base class for SVAML Action */
public abstract class Action {
@Override
public String toString() {
return "";
}
public abstract static class Builder> {
/**
* Build the instance
*
* @return Built instance
*/
public abstract Action build();
@SuppressWarnings("unchecked")
protected B self() {
return (B) this;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy