toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataRiskLevel = this.dataRiskLevel;
  final fileStoreDataProfileCount = this.fileStoreDataProfileCount;
  final name = this.name;
  final profileLastGenerated = this.profileLastGenerated;
  final profileStatus = this.profileStatus;
  final projectId = this.projectId;
  final sensitivityScore = this.sensitivityScore;
  final tableDataProfileCount = this.tableDataProfileCount;
  return {
    'dataRiskLevel': ?dataRiskLevel,
    'fileStoreDataProfileCount': ?fileStoreDataProfileCount,
    'name': ?name,
    'profileLastGenerated': ?profileLastGenerated,
    'profileStatus': ?profileStatus,
    'projectId': ?projectId,
    'sensitivityScore': ?sensitivityScore,
    'tableDataProfileCount': ?tableDataProfileCount,
  };
}