SourceCredentialsInfo.fromJson constructor
Implementation
factory SourceCredentialsInfo.fromJson(Map<String, dynamic> json) {
return SourceCredentialsInfo(
arn: json['arn'] as String?,
authType: (json['authType'] as String?)?.toAuthType(),
serverType: (json['serverType'] as String?)?.toServerType(),
);
}