webhookOperationNullableToJson function

String? webhookOperationNullableToJson(
  1. WebhookOperation? webhookOperation
)

Implementation

String? webhookOperationNullableToJson(
    enums.WebhookOperation? webhookOperation) {
  return webhookOperation?.value;
}