![JAR search and dependency download from the Maven repository](/logo.png)
com.sap.cloud.sdk.cloudplatform.metering.TenantMetricKeyPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metering-scp-neo Show documentation
Show all versions of metering-scp-neo Show documentation
Implementation of the Cloud platform abstraction for API metering functionality
on the SAP Cloud Platform (Neo).
/*
* Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.cloud.sdk.cloudplatform.metering;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* POJO representing a category for a specific account, measured in the metering.
*/
@Data
@EqualsAndHashCode( of = { "accountId", "meteringCategory" } )
public class TenantMetricKeyPair
{
private final transient String tenantId;
private final String accountId;
private final String meteringCategory;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy