v1CreateWebhookEndpointResult.fromJson constructor
Implementation
factory v1CreateWebhookEndpointResult.fromJson(Map<String, dynamic> json) {
final _endpointId = json['endpointId'] as String;
final _webhookEndpoint = v1WebhookEndpointData
.fromJson(json['webhookEndpoint'] as Map<String, dynamic>);
return v1CreateWebhookEndpointResult(
endpointId: _endpointId,
webhookEndpoint: _webhookEndpoint,
);
}