com.azure.messaging.eventgrid.systemevents.AcsEmailDeliveryReportStatusDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Detailed information about the status if any. */
@Fluent
public final class AcsEmailDeliveryReportStatusDetails {
/*
* Detailed status message
*/
@JsonProperty(value = "statusMessage")
private String statusMessage;
/** Creates an instance of AcsEmailDeliveryReportStatusDetails class. */
public AcsEmailDeliveryReportStatusDetails() {}
/**
* Get the statusMessage property: Detailed status message.
*
* @return the statusMessage value.
*/
public String getStatusMessage() {
return this.statusMessage;
}
/**
* Set the statusMessage property: Detailed status message.
*
* @param statusMessage the statusMessage value to set.
* @return the AcsEmailDeliveryReportStatusDetails object itself.
*/
public AcsEmailDeliveryReportStatusDetails setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy