com.microsoft.store.partnercenter.models.subscriptions.UpgradeResult 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.subscriptions;
import com.microsoft.store.partnercenter.models.ResourceBase;
/**
* Represents the result of performing a subscription Upgrade
*/
public class UpgradeResult
extends ResourceBase
{
/**
* Gets or sets the source subscription id.
*/
private String __SourceSubscriptionId;
public String getSourceSubscriptionId()
{
return __SourceSubscriptionId;
}
public void setSourceSubscriptionId(String value)
{
__SourceSubscriptionId = value;
}
/**
* Gets or sets the target subscription id.
*/
private String __TargetSubscriptionId;
public String getTargetSubscriptionId()
{
return __TargetSubscriptionId;
}
public void setTargetSubscriptionId(String value)
{
__TargetSubscriptionId = value;
}
/**
* Gets or sets the type of upgrade.
*/
private UpgradeType __UpgradeType;
public UpgradeType getUpgradeType()
{
return __UpgradeType;
}
public void setUpgradeType(UpgradeType value)
{
__UpgradeType = value;
}
/**
* Gets or sets the errors encountered while attempting to perform the upgrade, if applicable.
*/
private Iterable __UpgradeErrors;
public Iterable getUpgradeErrors()
{
return __UpgradeErrors;
}
public void setUpgradeErrors(Iterable value)
{
__UpgradeErrors = value;
}
/**
* Gets or sets the errors encountered while attempting to migrate user licenses, if applicable.
*/
private Iterable __LicenseErrors;
public Iterable getLicenseErrors()
{
return __LicenseErrors;
}
public void setLicenseErrors(Iterable value)
{
__LicenseErrors = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy