toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final associatedNetworks = this.associatedNetworks;
  final associations = this.associations;
  final billingProjectId = this.billingProjectId;
  final createTime = this.createTime;
  final description = this.description;
  final endpointSettings = this.endpointSettings;
  final labels = this.labels;
  final name = this.name;
  final reconciling = this.reconciling;
  final satisfiesPzi = this.satisfiesPzi;
  final satisfiesPzs = this.satisfiesPzs;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'associatedNetworks': ?associatedNetworks,
    'associations': ?associations,
    'billingProjectId': ?billingProjectId,
    'createTime': ?createTime,
    'description': ?description,
    'endpointSettings': ?endpointSettings,
    'labels': ?labels,
    'name': ?name,
    'reconciling': ?reconciling,
    'satisfiesPzi': ?satisfiesPzi,
    'satisfiesPzs': ?satisfiesPzs,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}