v1UpdateWebhookEndpointIntent.fromJson constructor
Implementation
factory v1UpdateWebhookEndpointIntent.fromJson(Map<String, dynamic> json) {
final _endpointId = json['endpointId'] as String;
final _url = json['url'] as String?;
final _name = json['name'] as String?;
final _isActive = json['isActive'] as bool?;
return v1UpdateWebhookEndpointIntent(
endpointId: _endpointId,
url: _url,
name: _name,
isActive: _isActive,
);
}