v1UpdateAuthProxyConfigResult.fromJson constructor

v1UpdateAuthProxyConfigResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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