toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adjustmentSummaries = this.adjustmentSummaries;
final billingCorrectionSubtotalAmountMicros =
this.billingCorrectionSubtotalAmountMicros;
final billingCorrectionTaxAmountMicros =
this.billingCorrectionTaxAmountMicros;
final billingCorrectionTotalAmountMicros =
this.billingCorrectionTotalAmountMicros;
final couponAdjustmentSubtotalAmountMicros =
this.couponAdjustmentSubtotalAmountMicros;
final couponAdjustmentTaxAmountMicros =
this.couponAdjustmentTaxAmountMicros;
final couponAdjustmentTotalAmountMicros =
this.couponAdjustmentTotalAmountMicros;
final customer = this.customer;
final excessCreditAdjustmentSubtotalAmountMicros =
this.excessCreditAdjustmentSubtotalAmountMicros;
final excessCreditAdjustmentTaxAmountMicros =
this.excessCreditAdjustmentTaxAmountMicros;
final excessCreditAdjustmentTotalAmountMicros =
this.excessCreditAdjustmentTotalAmountMicros;
final exportChargeSubtotalAmountMicros =
this.exportChargeSubtotalAmountMicros;
final exportChargeTaxAmountMicros = this.exportChargeTaxAmountMicros;
final exportChargeTotalAmountMicros = this.exportChargeTotalAmountMicros;
final regulatoryCostSummaries = this.regulatoryCostSummaries;
final regulatoryCostsSubtotalAmountMicros =
this.regulatoryCostsSubtotalAmountMicros;
final regulatoryCostsTaxAmountMicros = this.regulatoryCostsTaxAmountMicros;
final regulatoryCostsTotalAmountMicros =
this.regulatoryCostsTotalAmountMicros;
final subtotalAmountMicros = this.subtotalAmountMicros;
final taxAmountMicros = this.taxAmountMicros;
final totalAmountMicros = this.totalAmountMicros;
return {
'adjustmentSummaries': ?adjustmentSummaries,
'billingCorrectionSubtotalAmountMicros':
?billingCorrectionSubtotalAmountMicros,
'billingCorrectionTaxAmountMicros': ?billingCorrectionTaxAmountMicros,
'billingCorrectionTotalAmountMicros': ?billingCorrectionTotalAmountMicros,
'couponAdjustmentSubtotalAmountMicros':
?couponAdjustmentSubtotalAmountMicros,
'couponAdjustmentTaxAmountMicros': ?couponAdjustmentTaxAmountMicros,
'couponAdjustmentTotalAmountMicros': ?couponAdjustmentTotalAmountMicros,
'customer': ?customer,
'excessCreditAdjustmentSubtotalAmountMicros':
?excessCreditAdjustmentSubtotalAmountMicros,
'excessCreditAdjustmentTaxAmountMicros':
?excessCreditAdjustmentTaxAmountMicros,
'excessCreditAdjustmentTotalAmountMicros':
?excessCreditAdjustmentTotalAmountMicros,
'exportChargeSubtotalAmountMicros': ?exportChargeSubtotalAmountMicros,
'exportChargeTaxAmountMicros': ?exportChargeTaxAmountMicros,
'exportChargeTotalAmountMicros': ?exportChargeTotalAmountMicros,
'regulatoryCostSummaries': ?regulatoryCostSummaries,
'regulatoryCostsSubtotalAmountMicros':
?regulatoryCostsSubtotalAmountMicros,
'regulatoryCostsTaxAmountMicros': ?regulatoryCostsTaxAmountMicros,
'regulatoryCostsTotalAmountMicros': ?regulatoryCostsTotalAmountMicros,
'subtotalAmountMicros': ?subtotalAmountMicros,
'taxAmountMicros': ?taxAmountMicros,
'totalAmountMicros': ?totalAmountMicros,
};
}