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

com.azure.messaging.eventgrid.systemevents.AcsEmailDeliveryReportStatusDetails Maven / Gradle / Ivy

There is a newer version: 4.27.0
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.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