toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (eventsListenerEndpoint != null)
    'eventsListenerEndpoint': eventsListenerEndpoint!,
  if (eventsListenerPscSa != null)
    'eventsListenerPscSa': eventsListenerPscSa!,
  if (status != null) 'status': status!,
  if (webhookData != null) 'webhookData': webhookData!,
  if (webhookSubscriptions != null)
    'webhookSubscriptions': webhookSubscriptions!,
};