re-communication-sms.1.1.26.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-sms Show documentation
Show all versions of azure-communication-sms Show documentation
This package contains clients and data structures used to send SMS messages with Azure Communication SMS Service.
For this release, see notes - https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/communication/azure-communication-sms/README.md and https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/communication/azure-communication-sms/CHANGELOG.md.
Microsoft Azure Communication SMS quickstart - https://docs.microsoft.com/azure/communication-services/quickstarts/telephony-sms/send?pivots=programming-language-java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
module com.azure.communication.sms {
requires transitive com.azure.communication.common;
// public API surface area
exports com.azure.communication.sms;
exports com.azure.communication.sms.models;
// exporting some packages specifically for Jackson
opens com.azure.communication.sms.models to com.fasterxml.jackson.databind;
opens com.azure.communication.sms.implementation.models to com.fasterxml.jackson.databind;
}