toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currencyCode = this.currencyCode;
final displayName = this.displayName;
final masterBillingAccount = this.masterBillingAccount;
final name = this.name;
final open = this.open;
final parent = this.parent;
return {
'currencyCode': ?currencyCode,
'displayName': ?displayName,
'masterBillingAccount': ?masterBillingAccount,
'name': ?name,
'open': ?open,
'parent': ?parent,
};
}