toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final action = this.action;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final orchestratedResource = this.orchestratedResource;
  final orchestrationScope = this.orchestrationScope;
  final orchestrationState = this.orchestrationState;
  final reconciling = this.reconciling;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'action': ?action,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'orchestratedResource': ?orchestratedResource,
    'orchestrationScope': ?orchestrationScope,
    'orchestrationState': ?orchestrationState,
    'reconciling': ?reconciling,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}