toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final billingMethod = this.billingMethod;
final bytesBilled = this.bytesBilled;
final bytesProcessed = this.bytesProcessed;
final externalService = this.externalService;
final reservedSlotCount = this.reservedSlotCount;
final slotMs = this.slotMs;
return {
'billingMethod': ?billingMethod,
'bytesBilled': ?bytesBilled,
'bytesProcessed': ?bytesProcessed,
'externalService': ?externalService,
'reservedSlotCount': ?reservedSlotCount,
'slotMs': ?slotMs,
};
}