com.microsoft.store.partnercenter.models.licenses.LicenseWarning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// 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