toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final calendarPeriod = this.calendarPeriod;
final displayName = this.displayName;
final goal = this.goal;
final name = this.name;
final rollingPeriod = this.rollingPeriod;
final serviceLevelIndicator = this.serviceLevelIndicator;
final userLabels = this.userLabels;
return {
'calendarPeriod': ?calendarPeriod,
'displayName': ?displayName,
'goal': ?goal,
'name': ?name,
'rollingPeriod': ?rollingPeriod,
'serviceLevelIndicator': ?serviceLevelIndicator,
'userLabels': ?userLabels,
};
}