toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final channel = this.channel;
  final conditions = this.conditions;
  final createTime = this.createTime;
  final destination = this.destination;
  final etag = this.etag;
  final eventDataContentType = this.eventDataContentType;
  final eventFilters = this.eventFilters;
  final labels = this.labels;
  final name = this.name;
  final retryPolicy = this.retryPolicy;
  final satisfiesPzs = this.satisfiesPzs;
  final serviceAccount = this.serviceAccount;
  final transport = this.transport;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'channel': ?channel,
    'conditions': ?conditions,
    'createTime': ?createTime,
    'destination': ?destination,
    'etag': ?etag,
    'eventDataContentType': ?eventDataContentType,
    'eventFilters': ?eventFilters,
    'labels': ?labels,
    'name': ?name,
    'retryPolicy': ?retryPolicy,
    'satisfiesPzs': ?satisfiesPzs,
    'serviceAccount': ?serviceAccount,
    'transport': ?transport,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}