SmsSendResponse.java
// 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<SmsSendResponseItem> value;
/**
* Get the value property: The value property.
*
* @return the value value.
*/
public List<SmsSendResponseItem> 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<SmsSendResponseItem> value) {
this.value = value;
return this;
}
}