DeleteEndpointResponse.fromJson constructor
Implementation
factory DeleteEndpointResponse.fromJson(Map<String, dynamic> json) {
return DeleteEndpointResponse(
endpoint: json['Endpoint'] != null
? Endpoint.fromJson(json['Endpoint'] as Map<String, dynamic>)
: null,
);
}