toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final eventsListenerEndpoint = this.eventsListenerEndpoint;
  final eventsListenerPscSa = this.eventsListenerPscSa;
  final status = this.status;
  final webhookData = this.webhookData;
  final webhookSubscriptions = this.webhookSubscriptions;
  return {
    'eventsListenerEndpoint': ?eventsListenerEndpoint,
    'eventsListenerPscSa': ?eventsListenerPscSa,
    'status': ?status,
    'webhookData': ?webhookData,
    'webhookSubscriptions': ?webhookSubscriptions,
  };
}