CreateCertificateAuthorityAuditReportResponse.fromJson constructor

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

Implementation

factory CreateCertificateAuthorityAuditReportResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateCertificateAuthorityAuditReportResponse(
    auditReportId: json['AuditReportId'] as String?,
    s3Key: json['S3Key'] as String?,
  );
}