v1UpdateAuthProxyConfigResult.fromJson constructor
Implementation
factory v1UpdateAuthProxyConfigResult.fromJson(Map<String, dynamic> json) {
final _configId = json['configId'] as String?;
return v1UpdateAuthProxyConfigResult(
configId: _configId,
);
}