toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientAccountDisplayName = this.clientAccountDisplayName;
  final clientAccountId = this.clientAccountId;
  final clientAccountType = this.clientAccountType;
  final historicalPricings = this.historicalPricings;
  final metrics = this.metrics;
  final name = this.name;
  final pricing = this.pricing;
  final status = this.status;
  final userListDisplayName = this.userListDisplayName;
  final userListId = this.userListId;
  return {
    'clientAccountDisplayName': ?clientAccountDisplayName,
    'clientAccountId': ?clientAccountId,
    'clientAccountType': ?clientAccountType,
    'historicalPricings': ?historicalPricings,
    'metrics': ?metrics,
    'name': ?name,
    'pricing': ?pricing,
    'status': ?status,
    'userListDisplayName': ?userListDisplayName,
    'userListId': ?userListId,
  };
}