RegisterCACertificateResponse.fromJson constructor

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

Implementation

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