ClientMonthlyRevenue
Represents the monthly revenue for a specific client based on various benefit cost categories. This class is used to store and calculate costs associated with different healthcare benefits for a given client.
type ClientMonthlyRevenue {
careAndDischargeBenefitCosts: BigDecimal!
client: Client!
compensationSurchargeBenefitCosts: BigDecimal!
consultationBenefitCosts: BigDecimal!
daycareBenefitCosts: BigDecimal!
homeNursingBenefitCosts: BigDecimal!
nursingBenefitCosts: BigDecimal!
preventiveCareBenefitCosts: BigDecimal!
privateBenefitCosts: BigDecimal!
total: BigDecimal!
}
Fields
ClientMonthlyRevenue.careAndDischargeBenefitCosts ● BigDecimal! non-null scalar
Sum of all care and discharge benefit costs for the client for the given month
ClientMonthlyRevenue.client ● Client! non-null object
The corresponding client
ClientMonthlyRevenue.compensationSurchargeBenefitCosts ● BigDecimal! non-null scalar
Sum of all compensation surcharge benefit costs for the client for the given month
ClientMonthlyRevenue.consultationBenefitCosts ● BigDecimal! non-null scalar
Sum of all consultation benefit costs for the client for the given month
ClientMonthlyRevenue.daycareBenefitCosts ● BigDecimal! non-null scalar
Sum of all daycare benefit costs for the client for the given month
ClientMonthlyRevenue.homeNursingBenefitCosts ● BigDecimal! non-null scalar
Sum of all home nursing benefit costs for the client for the given month
ClientMonthlyRevenue.nursingBenefitCosts ● BigDecimal! non-null scalar
Sum of all nursing benefit costs for the client for the given month
ClientMonthlyRevenue.preventiveCareBenefitCosts ● BigDecimal! non-null scalar
Sum of all preventive care benefit costs for the client for the given month
ClientMonthlyRevenue.privateBenefitCosts ● BigDecimal! non-null scalar
Sum of all private benefit costs for the client for the given month
ClientMonthlyRevenue.total ● BigDecimal! non-null scalar
Sum of all benefit costs for the client for the given month
Member Of
PlannedMonthlyRevenue object