RegisterCertificateWithoutCAResponse.fromJson constructor

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

Implementation

factory RegisterCertificateWithoutCAResponse.fromJson(
    Map<String, dynamic> json) {
  return RegisterCertificateWithoutCAResponse(
    certificateArn: json['certificateArn'] as String?,
    certificateId: json['certificateId'] as String?,
  );
}