toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final calendarPeriod = this.calendarPeriod;
  final creditTypes = this.creditTypes;
  final creditTypesTreatment = this.creditTypesTreatment;
  final customPeriod = this.customPeriod;
  final labels = this.labels;
  final projects = this.projects;
  final resourceAncestors = this.resourceAncestors;
  final services = this.services;
  final subaccounts = this.subaccounts;
  return {
    'calendarPeriod': ?calendarPeriod,
    'creditTypes': ?creditTypes,
    'creditTypesTreatment': ?creditTypesTreatment,
    'customPeriod': ?customPeriod,
    'labels': ?labels,
    'projects': ?projects,
    'resourceAncestors': ?resourceAncestors,
    'services': ?services,
    'subaccounts': ?subaccounts,
  };
}