toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appliedLabels = this.appliedLabels;
  final clientCustomer = this.clientCustomer;
  final currencyCode = this.currencyCode;
  final descriptiveName = this.descriptiveName;
  final hidden = this.hidden;
  final id = this.id;
  final level = this.level;
  final manager = this.manager;
  final resourceName = this.resourceName;
  final status = this.status;
  final testAccount = this.testAccount;
  final timeZone = this.timeZone;
  return {
    'appliedLabels': ?appliedLabels,
    'clientCustomer': ?clientCustomer,
    'currencyCode': ?currencyCode,
    'descriptiveName': ?descriptiveName,
    'hidden': ?hidden,
    'id': ?id,
    'level': ?level,
    'manager': ?manager,
    'resourceName': ?resourceName,
    'status': ?status,
    'testAccount': ?testAccount,
    'timeZone': ?timeZone,
  };
}