com.sinch.sdk.domains.numbers.models.Money Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sinch-sdk-java Show documentation
Show all versions of sinch-sdk-java Show documentation
SDK providing a Java API for the Sinch REST APIs.
package com.sinch.sdk.domains.numbers.models;
/**
* An object giving details on currency code and the amount charged.
*
* @since 1.0
*/
public class Money {
private final String currencyCode;
private final Double amount;
/**
* @param currencyCode The 3-letter currency code defined in ISO 4217.
* @param amount The amount. There are no guarantees on the precision unless documented by the
* message origin. The amount cannot be updated and is read-only.
*/
public Money(String currencyCode, Double amount) {
this.currencyCode = currencyCode;
this.amount = amount;
}
public String getCurrencyCode() {
return currencyCode;
}
public Double getAmount() {
return amount;
}
public static Builder builder() {
return new Builder();
}
@Override
public String toString() {
return "Money{" + "currencyCode='" + currencyCode + '\'' + ", amount='" + amount + '\'' + '}';
}
public static class Builder {
private String currencyCode;
private Double amount;
private Builder() {}
public Builder setCurrencyCode(String value) {
this.currencyCode = value;
return this;
}
public Builder setAmount(Double value) {
this.amount = value;
return this;
}
public Money build() {
return new Money(this.currencyCode, this.amount);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy