nz.co.blink.debit.dto.v1.Amount Maven / Gradle / Ivy
Show all versions of blink-debit-api-client-java-spring6 Show documentation
/**
* Copyright (c) 2022 BlinkPay
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package nz.co.blink.debit.dto.v1;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.annotation.Generated;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Pattern;
import nz.co.blink.debit.exception.BlinkInvalidValueException;
import org.springframework.validation.annotation.Validated;
import java.util.Arrays;
import java.util.Objects;
/**
* Amount with currency.
*/
@Schema(description = "Amount with currency.")
@Validated
@Generated(value = "io.swagger.codegen.v3.generators.java.SpringCodegen", date = "2021-07-22T04:23:07.030Z[GMT]")
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Amount {
@JsonProperty("total")
private String total = null;
/**
* The currency. Only NZD is supported.
*/
public enum CurrencyEnum {
NZD("NZD");
private String value;
CurrencyEnum(String value) {
this.value = value;
}
@Override
@JsonValue
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static CurrencyEnum fromValue(String currency) throws BlinkInvalidValueException {
return Arrays.stream(CurrencyEnum.values())
.filter(currencyEnum -> String.valueOf(currencyEnum.value).equals(currency))
.findFirst()
.orElseThrow(() -> new BlinkInvalidValueException("Unknown currency: " + currency));
}
}
@JsonProperty("currency")
private CurrencyEnum currency = null;
public Amount total(String total) {
this.total = total;
return this;
}
/**
* The amount.
*
* @return total
**/
@Schema(example = "100.00", requiredMode = Schema.RequiredMode.REQUIRED, description = "The amount.")
@NotNull(message = "Total must not be null")
@Pattern(regexp = "^\\d{1,13}\\.\\d{1,2}$")
public String getTotal() {
return total;
}
public void setTotal(String total) {
this.total = total;
}
public Amount currency(CurrencyEnum currency) {
this.currency = currency;
return this;
}
/**
* The currency. Only NZD is supported.
*
* @return currency
**/
@Schema(example = "NZD", requiredMode = Schema.RequiredMode.REQUIRED, description = "The currency. Only NZD is supported.")
@NotNull(message = "Currency must not be null and only NZD is supported")
public CurrencyEnum getCurrency() {
return currency;
}
public void setCurrency(CurrencyEnum currency) {
this.currency = currency;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Amount amount = (Amount) o;
return Objects.equals(this.total, amount.total)
&& Objects.equals(this.currency, amount.currency);
}
@Override
public int hashCode() {
return Objects.hash(total, currency);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Amount {\n");
sb.append(" total: ").append(toIndentedString(total)).append("\n");
sb.append(" currency: ").append(toIndentedString(currency)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}