Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FinancialAnalysis

import type { FinancialAnalysis } from "https://googleapis.deno.dev/v1/solar:v1.ts";

Analysis of the cost and benefits of the optimum solar layout for a particular electric bill size.

interface FinancialAnalysis {
averageKwhPerMonth?: number;
cashPurchaseSavings?: CashPurchaseSavings;
defaultBill?: boolean;
financedPurchaseSavings?: FinancedPurchaseSavings;
financialDetails?: FinancialDetails;
leasingSavings?: LeasingSavings;
monthlyBill?: Money;
panelConfigIndex?: number;
}

§Properties

§
averageKwhPerMonth?: number
[src]

How much electricity the house uses in an average month, based on the bill size and the local electricity rates.

§
cashPurchaseSavings?: CashPurchaseSavings
[src]

Cost and benefit of buying the solar panels with cash.

§
defaultBill?: boolean
[src]

Whether this is the bill size selected to be the default bill for the area this building is in. Exactly one FinancialAnalysis in BuildingSolarPotential should have default_bill set.

§
financedPurchaseSavings?: FinancedPurchaseSavings
[src]

Cost and benefit of buying the solar panels by financing the purchase.

§
financialDetails?: FinancialDetails
[src]

Financial information that applies regardless of the financing method used.

§
leasingSavings?: LeasingSavings
[src]

Cost and benefit of leasing the solar panels.

§
monthlyBill?: Money
[src]

The monthly electric bill this analysis assumes.

§
panelConfigIndex?: number
[src]

Index in solar_panel_configs of the optimum solar layout for this bill size. This can be -1 indicating that there is no layout. In this case, the remaining submessages will be omitted.