Skip to content

Commit

Permalink
thunderpay-api: billing[catalog(BlockPriceOverride)]
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Jan 21, 2025
1 parent e138110 commit 0a67c91
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/**
* @file BlockPriceOverride.java
* @author Krisna Pranav
* @brief Block Price Override
* @version 1.0
* @date 2025-01-21
*
* @copyright Copyright (c) 2024 ThunderPayment Developers, Krisna Pranav
*
*/

package org.thunderpay.billing.catalog.api;

import java.math.BigDecimal;

public interface BlockPriceOverride {
public String getUnitName();

public BigDecimal getSize();

public BigDecimal getPrice();
}

0 comments on commit 0a67c91

Please sign in to comment.