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

com.microsoft.store.partnercenter.models.licenses.LicenseWarning 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.licenses;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Model for license warnings.
 */
public class LicenseWarning {
    /**
     * Gets or sets the warning code.
     */
    @JsonProperty("Code")
	private String __Code;

    public String getCode()
    {
        return __Code;
    }

    public void setCode(String value)
    {
    	__Code = value;
    }



    /**
     * Gets or sets the warning message.
     */
    @JsonProperty("Message")
    private String __Message;
    
    public String getMessage()
    {
        return __Message;
    }

    public void setMessage(String value)
    {
    	__Message = value;
    }


    /**
     * Gets or sets the list of service plan names.
     */
    @JsonProperty("ServicePlans")
    private Iterable __ServicePlans;
    
    public Iterable getServicePlans()
    {
        return __ServicePlans;
    }

    public void setServicePlans(Iterable value)
    {
    	__ServicePlans = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy