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

org.springframework.social.partnercenter.api.analytics.PartnerLicensesDeploymentInsights Maven / Gradle / Ivy

Go to download

A provider extension for Spring Social to enable connectivity with Microsoft and an API binding for Microsoft's Partner Center API.

There is a newer version: 10.11.0
Show newest version
package org.springframework.social.partnercenter.api.analytics;

import java.time.ZonedDateTime;

import org.springframework.social.partnercenter.api.ResourceAttributes;

public class PartnerLicensesDeploymentInsights {
	private Double proratedDeploymentPercent;
	private Double licensesSold;
	private ZonedDateTime processedDateTime;
	private String serviceName;
	private String channel;
	private ResourceAttributes attributes;

	public Double getProratedDeploymentPercent() {
		return proratedDeploymentPercent;
	}

	public void setProratedDeploymentPercent(Double proratedDeploymentPercent) {
		this.proratedDeploymentPercent = proratedDeploymentPercent;
	}

	public Double getLicensesSold() {
		return licensesSold;
	}

	public void setLicensesSold(Double licensesSold) {
		this.licensesSold = licensesSold;
	}

	public ZonedDateTime getProcessedDateTime() {
		return processedDateTime;
	}

	public void setProcessedDateTime(ZonedDateTime processedDateTime) {
		this.processedDateTime = processedDateTime;
	}

	public String getServiceName() {
		return serviceName;
	}

	public void setServiceName(String serviceName) {
		this.serviceName = serviceName;
	}

	public String getChannel() {
		return channel;
	}

	public void setChannel(String channel) {
		this.channel = channel;
	}

	public ResourceAttributes getAttributes() {
		return attributes;
	}

	public void setAttributes(ResourceAttributes attributes) {
		this.attributes = attributes;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy