toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final automationType = this.automationType;
  final budgetSegments = this.budgetSegments;
  final budgetUnit = this.budgetUnit;
  return {
    'automationType': ?automationType,
    'budgetSegments': ?budgetSegments,
    'budgetUnit': ?budgetUnit,
  };
}