toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final adServerConfig = this.adServerConfig;
  final dataAccessConfig = this.dataAccessConfig;
  final displayName = this.displayName;
  final entityStatus = this.entityStatus;
  final exchangeConfig = this.exchangeConfig;
  final generalConfig = this.generalConfig;
  final name = this.name;
  final partnerId = this.partnerId;
  final updateTime = this.updateTime;
  return {
    'adServerConfig': ?adServerConfig,
    'dataAccessConfig': ?dataAccessConfig,
    'displayName': ?displayName,
    'entityStatus': ?entityStatus,
    'exchangeConfig': ?exchangeConfig,
    'generalConfig': ?generalConfig,
    'name': ?name,
    'partnerId': ?partnerId,
    'updateTime': ?updateTime,
  };
}