toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final applicationEndpoint = this.applicationEndpoint;
  final connectors = this.connectors;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final gateway = this.gateway;
  final labels = this.labels;
  final name = this.name;
  final satisfiesPzi = this.satisfiesPzi;
  final satisfiesPzs = this.satisfiesPzs;
  final state = this.state;
  final type = this.type;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'applicationEndpoint': ?applicationEndpoint,
    'connectors': ?connectors,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'gateway': ?gateway,
    'labels': ?labels,
    'name': ?name,
    'satisfiesPzi': ?satisfiesPzi,
    'satisfiesPzs': ?satisfiesPzs,
    'state': ?state,
    'type': ?type,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}