com.mindee.product.us.healthcarecard.HealthcareCardV1Copay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
The newest version!
package com.mindee.product.us.healthcarecard;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.mindee.parsing.SummaryHelper;
import com.mindee.parsing.standard.BaseField;
import com.mindee.parsing.standard.LineItemField;
import java.util.HashMap;
import java.util.Map;
import lombok.Getter;
/**
* Is a fixed amount for a covered service.
*/
@Getter
@JsonIgnoreProperties(ignoreUnknown = true)
public class HealthcareCardV1Copay extends BaseField implements LineItemField {
/**
* The price of service.
*/
@JsonProperty("service_fees")
Double serviceFees;
/**
* The name of service of the copay.
*/
@JsonProperty("service_name")
String serviceName;
public boolean isEmpty() {
return (
serviceFees == null
&& (serviceName == null || serviceName.isEmpty())
);
}
private Map tablePrintableValues() {
Map printable = new HashMap<>();
printable.put(
"serviceFees",
SummaryHelper.formatAmount(this.serviceFees)
);
printable.put("serviceName", SummaryHelper.formatForDisplay(this.serviceName, null));
return printable;
}
/**
* Output the line in a format suitable for inclusion in an rST table.
*/
public String toTableLine() {
Map printable = this.tablePrintableValues();
return String.format("| %-12s ", printable.get("serviceFees"))
+ String.format("| %-12s |", printable.get("serviceName"));
}
@Override
public String toString() {
Map printable = this.printableValues();
return String.format("Service Fees: %s", printable.get("serviceFees"))
+ String.format(", Service Name: %s", printable.get("serviceName"));
}
private Map printableValues() {
Map printable = new HashMap<>();
printable.put(
"serviceFees",
SummaryHelper.formatAmount(this.serviceFees)
);
printable.put("serviceName", SummaryHelper.formatForDisplay(this.serviceName, null));
return printable;
}
}