class GetTotalEnergyConsumptionParam { final String? startDate; final String? endDate; final String? spaceId; GetTotalEnergyConsumptionParam({ this.startDate, this.endDate, this.spaceId, }); Map toJson() { return { 'startDate': startDate, 'endDate': endDate, 'spaceId': spaceId, }; } }