toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final configVariables = this.configVariables;
  final createTime = this.createTime;
  final destinationConfigs = this.destinationConfigs;
  final endUserAuthenticationConfig = this.endUserAuthenticationConfig;
  final labels = this.labels;
  final name = this.name;
  final notifyEndpointDestination = this.notifyEndpointDestination;
  final roles = this.roles;
  final status = this.status;
  final updateTime = this.updateTime;
  final userId = this.userId;
  return {
    'configVariables': ?configVariables,
    'createTime': ?createTime,
    'destinationConfigs': ?destinationConfigs,
    'endUserAuthenticationConfig': ?endUserAuthenticationConfig,
    'labels': ?labels,
    'name': ?name,
    'notifyEndpointDestination': ?notifyEndpointDestination,
    'roles': ?roles,
    'status': ?status,
    'updateTime': ?updateTime,
    'userId': ?userId,
  };
}