billToLatestSmartMeterSnapshot
Bill an account with a smart meter to the most recent midnight snapshot reading.
Arguments
Input fields for billing to latest smart meter snapshot.
Returns
BillToLatestSmartMeterSnapshotBill an account with a smart meter to the most recent midnight snapshot reading.
Possible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation BillToLatestSmartMeterSnapshot($input: BillToLatestSmartMeterSnapshotInput!) {
billToLatestSmartMeterSnapshot(input: $input) {
billedToDate
currentBalance
}
}
Variables
{
"input": BillToLatestSmartMeterSnapshotInput
}
Response
{
"data": {
"billToLatestSmartMeterSnapshot": {
"billedToDate": "1989-06-28",
"currentBalance": "1.0"
}
}
}