All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.communication.sms.implementation.models.SmsSendResponse Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.1.27
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.communication.sms.implementation.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** The SmsSendResponse model. */
@Fluent
public final class SmsSendResponse {
    /*
     * The value property.
     */
    @JsonProperty(value = "value", required = true)
    private List value;

    /**
     * Get the value property: The value property.
     *
     * @return the value value.
     */
    public List getValue() {
        return this.value;
    }

    /**
     * Set the value property: The value property.
     *
     * @param value the value value to set.
     * @return the SmsSendResponse object itself.
     */
    public SmsSendResponse setValue(List value) {
        this.value = value;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy