TDeleteWebhookEndpointBody.fromJson constructor

TDeleteWebhookEndpointBody.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TDeleteWebhookEndpointBody.fromJson(Map<String, dynamic> json) {
  final _timestampMs = json['timestampMs'] as String?;
  final _organizationId = json['organizationId'] as String?;
  final _endpointId = json['endpointId'] as String;
  return TDeleteWebhookEndpointBody(
    timestampMs: _timestampMs,
    organizationId: _organizationId,
    endpointId: _endpointId,
  );
}