com.sinch.sdk.domains.voice.adapters.converters.CapabilityDtoConverter 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.adapters.converters;
import com.sinch.sdk.domains.voice.models.CapabilityType;
public class CapabilityDtoConverter {
public static CapabilityType convert(String dto) {
if (null == dto) {
return null;
}
return CapabilityType.from(dto);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy