DescribeCertificateAuthorityAuditReportResponse.fromJson constructor
DescribeCertificateAuthorityAuditReportResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory DescribeCertificateAuthorityAuditReportResponse.fromJson(
Map<String, dynamic> json) {
return DescribeCertificateAuthorityAuditReportResponse(
auditReportStatus:
(json['AuditReportStatus'] as String?)?.toAuditReportStatus(),
createdAt: timeStampFromJson(json['CreatedAt']),
s3BucketName: json['S3BucketName'] as String?,
s3Key: json['S3Key'] as String?,
);
}