Skip to content

Commit

Permalink
thunderpay-api: billing[catalog(Price)]
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Jan 21, 2025
1 parent 6a05ab8 commit ef3cc20
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/**
* @file Price.java
* @author Krisna Pranav
* @brief Price
* @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 Price {
public Currency getCurrency();

public BigDecimal getValue() throws CurrencyValueNull;
}

0 comments on commit ef3cc20

Please sign in to comment.