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