toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final billingInvoiceCode = this.billingInvoiceCode;
final campaignId = this.campaignId;
final preTaxAmountMicros = this.preTaxAmountMicros;
final taxAmountMicros = this.taxAmountMicros;
final totalAmountMicros = this.totalAmountMicros;
return {
'billingInvoiceCode': ?billingInvoiceCode,
'campaignId': ?campaignId,
'preTaxAmountMicros': ?preTaxAmountMicros,
'taxAmountMicros': ?taxAmountMicros,
'totalAmountMicros': ?totalAmountMicros,
};
}