AuthConfig_ApiKeyConfig.fromJson constructor
Implementation
factory AuthConfig_ApiKeyConfig.fromJson(Map<String, dynamic> json) {
return AuthConfig_ApiKeyConfig(
name: json['name'] ?? '',
apiKeySecret: json['apiKeySecret'] ?? '',
httpElementLocation:
decodeEnum(
json['httpElementLocation'],
HttpElementLocation.fromJson,
) ??
HttpElementLocation.$default,
);
}