toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final containerName = this.containerName;
  final contentLanguage = this.contentLanguage;
  final contextAttributes = this.contextAttributes;
  final createTime = this.createTime;
  final hash = this.hash;
  final interactions = this.interactions;
  final keywords = this.keywords;
  final mimeType = this.mimeType;
  final objectType = this.objectType;
  final searchQualityMetadata = this.searchQualityMetadata;
  final sourceRepositoryUrl = this.sourceRepositoryUrl;
  final title = this.title;
  final updateTime = this.updateTime;
  return {
    'containerName': ?containerName,
    'contentLanguage': ?contentLanguage,
    'contextAttributes': ?contextAttributes,
    'createTime': ?createTime,
    'hash': ?hash,
    'interactions': ?interactions,
    'keywords': ?keywords,
    'mimeType': ?mimeType,
    'objectType': ?objectType,
    'searchQualityMetadata': ?searchQualityMetadata,
    'sourceRepositoryUrl': ?sourceRepositoryUrl,
    'title': ?title,
    'updateTime': ?updateTime,
  };
}