toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentConnectivityTemplate = this.agentConnectivityTemplate;
  final agentGatewayCard = this.agentGatewayCard;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final googleManaged = this.googleManaged;
  final labels = this.labels;
  final name = this.name;
  final networkConfig = this.networkConfig;
  final protocols = this.protocols;
  final registries = this.registries;
  final selfManaged = this.selfManaged;
  final updateTime = this.updateTime;
  return {
    'agentConnectivityTemplate': ?agentConnectivityTemplate,
    'agentGatewayCard': ?agentGatewayCard,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'googleManaged': ?googleManaged,
    'labels': ?labels,
    'name': ?name,
    'networkConfig': ?networkConfig,
    'protocols': ?protocols,
    'registries': ?registries,
    'selfManaged': ?selfManaged,
    'updateTime': ?updateTime,
  };
}