toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final configuredCapabilities = this.configuredCapabilities;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final lifecycleState = this.lifecycleState;
  final managementProject = this.managementProject;
  final name = this.name;
  final parent = this.parent;
  final tags = this.tags;
  return {
    'configuredCapabilities': ?configuredCapabilities,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'lifecycleState': ?lifecycleState,
    'managementProject': ?managementProject,
    'name': ?name,
    'parent': ?parent,
    'tags': ?tags,
  };
}