src/main/java/com/microsoft/store/partnercenter/productupgrades/ProductUpgradeCollectionOperations.java [53:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ProductUpgradeEligibility checkEligibility(ProductUpgradeRequest productUpgradeRequest)
    {
		if (productUpgradeRequest == null)
		{
			throw new IllegalArgumentException("The productUpgradeRequest parameter cannot be null.");
		}

		return this.getPartner().getServiceClient().post(
			this.getPartner(), 
			new TypeReference<ProductUpgradeEligibility>(){},
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetProductUpgradeEligibility").getPath(),
				this.getContext()),
            productUpgradeRequest);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/productupgrades/ProductUpgradeOperations.java [39:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ProductUpgradeStatus checkStatus(ProductUpgradeRequest productUpgradeRequest)
    {
        if (productUpgradeRequest == null)
		{
			throw new IllegalArgumentException("The productUpgradeRequest parameter cannot be null.");
		}

		return this.getPartner().getServiceClient().post(
			this.getPartner(), 
			new TypeReference<ProductUpgradeStatus>(){},
			MessageFormat.format(
				PartnerService.getInstance().getConfiguration().getApis().get("GetProductUpgradeStatus").getPath(),
				this.getContext()),
                productUpgradeRequest);   
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



