com.sinch.sdk.domains.common.adapters.converters.OffsetDateTimeDtoConverter 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.common.adapters.converters;
import java.time.Instant;
import java.time.OffsetDateTime;
public class OffsetDateTimeDtoConverter {
public static Instant convert(OffsetDateTime dto) {
return null != dto ? dto.toInstant() : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy