toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (configVariables != null) 'configVariables': configVariables!,
  if (createTime != null) 'createTime': createTime!,
  if (destinationConfigs != null) 'destinationConfigs': destinationConfigs!,
  if (endUserAuthenticationConfig != null)
    'endUserAuthenticationConfig': endUserAuthenticationConfig!,
  if (labels != null) 'labels': labels!,
  if (name != null) 'name': name!,
  if (notifyEndpointDestination != null)
    'notifyEndpointDestination': notifyEndpointDestination!,
  if (roles != null) 'roles': roles!,
  if (status != null) 'status': status!,
  if (updateTime != null) 'updateTime': updateTime!,
  if (userId != null) 'userId': userId!,
};