
com.azure.resourcemanager.billing.implementation.TransactionSummaryImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.billing.implementation;
import com.azure.resourcemanager.billing.fluent.models.TransactionSummaryInner;
import com.azure.resourcemanager.billing.models.TransactionSummary;
public final class TransactionSummaryImpl implements TransactionSummary {
private TransactionSummaryInner innerObject;
private final com.azure.resourcemanager.billing.BillingManager serviceManager;
TransactionSummaryImpl(TransactionSummaryInner innerObject,
com.azure.resourcemanager.billing.BillingManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public Float azureCreditApplied() {
return this.innerModel().azureCreditApplied();
}
public String billingCurrency() {
return this.innerModel().billingCurrency();
}
public Float consumptionCommitmentDecremented() {
return this.innerModel().consumptionCommitmentDecremented();
}
public Float subTotal() {
return this.innerModel().subTotal();
}
public Float tax() {
return this.innerModel().tax();
}
public Float total() {
return this.innerModel().total();
}
public TransactionSummaryInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.billing.BillingManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy