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

com.microsoft.store.partnercenter.models.serviceincidents.ServiceIncidents Maven / Gradle / Ivy

There is a newer version: 1.15.3
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See the LICENSE file in the project root for full license information.

package com.microsoft.store.partnercenter.models.serviceincidents;

/**
 * Represents a service incident.
 */
public class ServiceIncidents
{
    /**
     * Gets or sets the workload display name.
     */
    private String __Workload;

	/**
	 * @return the __Workload
	 */
	public String getWorkload() {
		return __Workload;
	}

	/**
	 * @param __Workload the __Workload to set
	 */
	public void setWorkload(String __Workload) {
		this.__Workload = __Workload;
	}

    /**
     * Gets or sets the Incident list.
     */
    private Iterable __Incidents;

	/**
	 * @return the __Incidents
	 */
	public Iterable getIncidents() {
		return __Incidents;
	}

	/**
	 * @param __Incidents the __Incidents to set
	 */
	public void setIncidents(Iterable __Incidents) {
		this.__Incidents = __Incidents;
	}

    /**
     * Gets or sets the cumulative status of the service.
     */
    private ServiceIncidentStatus __Status;

	/**
	 * @return the __Status
	 */
	public ServiceIncidentStatus getStatus() {
		return __Status;
	}

	/**
	 * @param __Status the __Status to set
	 */
	public void setStatus(ServiceIncidentStatus __Status) {
		this.__Status = __Status;
	}

    /**
     * Gets or sets the message center messages.
     */
    private Iterable __MessageCenterMessages;

	/**
	 * @return the __MessageCenterMessages
	 */
	public Iterable getMessageCenterMessages() {
		return __MessageCenterMessages;
	}

	/**
	 * @param __MessageCenterMessages the __MessageCenterMessages to set
	 */
	public void setMessageCenterMessages(Iterable __MessageCenterMessages) {
		this.__MessageCenterMessages = __MessageCenterMessages;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy