toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final assetTags = this.assetTags;
  final complianceState = this.complianceState;
  final createTime = this.createTime;
  final customId = this.customId;
  final etag = this.etag;
  final healthScore = this.healthScore;
  final keyValuePairs = this.keyValuePairs;
  final lastUpdateTime = this.lastUpdateTime;
  final managed = this.managed;
  final name = this.name;
  final ownerType = this.ownerType;
  final scoreReason = this.scoreReason;
  return {
    'assetTags': ?assetTags,
    'complianceState': ?complianceState,
    'createTime': ?createTime,
    'customId': ?customId,
    'etag': ?etag,
    'healthScore': ?healthScore,
    'keyValuePairs': ?keyValuePairs,
    'lastUpdateTime': ?lastUpdateTime,
    'managed': ?managed,
    'name': ?name,
    'ownerType': ?ownerType,
    'scoreReason': ?scoreReason,
  };
}