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

com.microsoft.store.partnercenter.usage.PartnerUsageSummaryOperations 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.usage;

import com.fasterxml.jackson.core.type.TypeReference;
import com.microsoft.store.partnercenter.BasePartnerComponentString;
import com.microsoft.store.partnercenter.IPartner;
import com.microsoft.store.partnercenter.PartnerService;
import com.microsoft.store.partnercenter.models.usage.PartnerUsageSummary;

/**
 * This class implements the operations available on a partner's usage summary.
 */
public class PartnerUsageSummaryOperations
	extends BasePartnerComponentString
	implements IPartnerUsageSummary
{
	/**
	 * Initializes a new instance of the PartnerUsageSummaryOperations class.
	 * 
	 * @param rootPartnerOperations The root partner operations instance.
	 */
	public PartnerUsageSummaryOperations( IPartner rootPartnerOperations )
	{
		super( rootPartnerOperations );
	}

	/**
	 * Gets the partner's usage summary.
	 * 
	 * @return The partner's usage summary.
	 */
	@Override
	public PartnerUsageSummary get()
	{
		return this.getPartner().getServiceClient().get(
			this.getPartner(),
			new TypeReference(){}, 
			PartnerService.getInstance().getConfiguration().getApis().get("GetPartnerUsageSummary").getPath());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy