toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authority = this.authority;
  final createTime = this.createTime;
  final etag = this.etag;
  final eventTypes = this.eventTypes;
  final expireTime = this.expireTime;
  final name = this.name;
  final notificationEndpoint = this.notificationEndpoint;
  final payloadOptions = this.payloadOptions;
  final reconciling = this.reconciling;
  final state = this.state;
  final suspensionReason = this.suspensionReason;
  final targetResource = this.targetResource;
  final ttl = this.ttl;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'authority': ?authority,
    'createTime': ?createTime,
    'etag': ?etag,
    'eventTypes': ?eventTypes,
    'expireTime': ?expireTime,
    'name': ?name,
    'notificationEndpoint': ?notificationEndpoint,
    'payloadOptions': ?payloadOptions,
    'reconciling': ?reconciling,
    'state': ?state,
    'suspensionReason': ?suspensionReason,
    'targetResource': ?targetResource,
    'ttl': ?ttl,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}